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

Slicer return all values except the selected values

Greeting!

 

Is there a way to create a slicer to return all values except the selected values.

For example: 

My table 

---------------

A

B

C

 

If user select 'A' in the slicer, then it will return 'B' and 'C'.

 

Your assistance is appreciated.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , for that your slicer should come from an independent table that has these values.

 

Add this measure with this column having A,B, C (assume Type)

 

Measure =

var _1 = except(All(Table[Type]), allselected(Type[Type]))

return

calculate(countrows(Table), filter(Table, Table[Type] in _1))

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , for that your slicer should come from an independent table that has these values.

 

Add this measure with this column having A,B, C (assume Type)

 

Measure =

var _1 = except(All(Table[Type]), allselected(Type[Type]))

return

calculate(countrows(Table), filter(Table, Table[Type] in _1))

How to achieve this functionality without creating independent table.

I'm using direct query mode.

Anonymous
Not applicable

@amitchandak that worked!! Thanks!

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.