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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
above is slicer i want to show all the options as cleared(deselected) as the default, i have tried using bookmarks by deselecting all options but not working please help
@Greg_Deckler Thank you very much for your reply, my issue is resolved with the help of my colleague, i deleted the slicer and copied the other slicer which show default as nothing selected(clear selection) and changed the datasource
@Greg_Deckler for few slicers i see nothing is selected as default, so want to make the other slicers like below, plse help
@prayele That should be the default for any slicer. However, when that is the case it is treated as all values selected. Are you saying that if all the values are not selected that you don't want the calculation in other visuals to occur? If that is the case, you would need to do it as part of the measure like this:
Measure =
VAR __AllCount = COUNTROWS(DISTINCT(ALL('Slicer Table'[Slicer Column])))
VAR __Count = COUNTROWS(DISTINCT('Slicer Table'[Slicer Column]))
VAR __Result = IF(__AllCount = __Count, BLANK(), <Some measure/calculation goes here>)
RETURN
__Result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |