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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to know if the user selected something on a slicer?

Hello everyone, 

 

I have a slicer on my report and a gauge that is filtered according to the selected value on the slicer. However if nothing is selected on the slicer then the value in the gauge correspodns to the first value on the slicer. I have a measure:

 

SelectedValue = FIRSTNONBLANK(Table[Column], Table[Column])

With this I get the selected value from the slicer. What I want is the following, if I don't select anything then the value on the gauge would be calculated for all the data. Here is an example

Screenshot_1.jpg

I want this measure to be calculated for both option 1 and option 2 if i have neither option selected. How can I do that? Any advice is welcomed.

Thanks 🙂

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks @Anonymous, but I used the ISFILTERED() function to see if I have anything selected on the slicer. 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous,

 

>>I want this measure to be calculated for both option 1 and option 2 if i have neither option selected. 

You can try to use below formula:

 

Measure:

 

CalculatWithSlicer= Calculate(expression,AllSelect(Table[Column]))

 

 

Sample:

SumOfSlicer= Calculate(Sum(Table[Amount]),AllSelect(Table[Column]))

AvgOfSlicer= Calculate(Average(Table[Amount]),AllSelect(Table[Column]))

 

 

Regards,

Xiaoxin SHeng

Anonymous
Not applicable

Thanks @Anonymous, but I used the ISFILTERED() function to see if I have anything selected on the slicer. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors