Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
@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))
@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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.