Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello !
I have some data that I need to be able to filter by country. So, I've created a parameter for it by getting a list of distinct values from the Country column, then I modified the query in editor by placing the parameter name in filtering step.
This works fine, however I'm wondering :
Are there any possibility to get an option of selecting all the values from the list of countries or desactivate the Parameter, so I can also keep all the data if needed ?
Thank you in advance !
Solved! Go to Solution.
I Think you can make this work. You can create something like this
First create a new parameter which only has the options true/false (TRUEFALSE_param)
Power BI:
Table.SelectRows(#"Change type", if ParmChooseCountry = null then each [Country]<>ParmChooseCountry else each [Country]=ParmChooseCountry)
I Think you can make this work. You can create something like this
First create a new parameter which only has the options true/false (TRUEFALSE_param)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!