Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Show Blank Data when Nothing is filtered

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?

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

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:

1.25.1.1.gif

 

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.

View solution in original post

4 REPLIES 4
v-eqin-msft
Community Support
Community Support

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:

1.25.1.1.gif

 

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.

lbendlin
Super User
Super User

compare FILTERS() to VALUES()

lbendlin
Super User
Super User

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.

Anonymous
Not applicable

What dax function would you use in the measure to make this successful?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.