Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have multip;e slicers on a page with multiple visuals (tables, charts, etc). I want the visuals to show blank when nothing is selected. How do I do this successfully?
Solved! Go to Solution.
Hi @Anonymous ,
You could use the following formula to create a new measure :
Measure =
CALCULATE (
IF ( ISFILTERED ( 'Table'[Country] ) || ISFILTERED ( 'Table'[City] ), 1, 0 ),
ALLSELECTED ( 'Table' )
)
And apply it to filter pane (set as "is 1") as shown below:
Please check the pbix file here.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You could use the following formula to create a new measure :
Measure =
CALCULATE (
IF ( ISFILTERED ( 'Table'[Country] ) || ISFILTERED ( 'Table'[City] ), 1, 0 ),
ALLSELECTED ( 'Table' )
)
And apply it to filter pane (set as "is 1") as shown below:
Please check the pbix file here.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
compare FILTERS() to VALUES()
Create a measure in lieu of your value column and set the measure to the value only when the number of slicer filters is different from the number of slicer values.
Beware! "Nothing is selected" and "Everything is selected" are treated the same by DAX.
What dax function would you use in the measure to make this successful?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
67 | |
64 | |
57 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
43 | |
38 |