Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I create a slicer but I want to permanently remove some of its entries. I created a Measure = FILTER(Table,[Col1]<>"something") but it does not work.
Any idea? It would also help to know why it didn't work.
Thanks!
Solved! Go to Solution.
A measure cannot return a table. You could write a measure like this
SlicerFilter = IF ( "something" IN VALUES ( Table1[Col1] ), 0, 1 )
and then add that measure to the filter pane of the slicer and set it so SlicerFilter is 1.
The easier way would be to go to the slicer filter pane and select all options under Basic filtering and then uncheck the ones you don't want.
A measure cannot return a table. You could write a measure like this
SlicerFilter = IF ( "something" IN VALUES ( Table1[Col1] ), 0, 1 )
and then add that measure to the filter pane of the slicer and set it so SlicerFilter is 1.
The easier way would be to go to the slicer filter pane and select all options under Basic filtering and then uncheck the ones you don't want.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!