Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
60 | |
58 | |
56 | |
38 | |
28 |
User | Count |
---|---|
82 | |
61 | |
45 | |
41 | |
39 |