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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Experts!
I have a report with 3 slicers: A, B, and C. However, at any given time, I want only one of the three slicers to be visible/shown while the remaining two are hidden because the slicer context changes depending on users' needs.
I have configured six buttons: A active/inactive, B a/i, and C a/i with three Bookmarks to appropriately hide/show buttons and slicers when the user clicks the buttons.
Everything works as expected.
Now, I need to find a way in DAX to determine which button/slicer is active/shown. However, I can't seem to find an appropriate function.
Is there a way to do this in DAX? Or, should I try another method?
TIA!
Solved! Go to Solution.
When you're working with bookmarks you can have them remember the state of filters, slicers etc.
You could create a disconnected table containing rows for button A, B & C. When the appropriate button is active make sure that a filter is applied on the disconnected table and at the same time clear the selections on the other slicers. You can then use SELECTEDVALUE on the disconnected table to determine which button is active.
Hi @johnt75 ,
Perfect! That worked! I was pondering a solution and came up with that on my own. After configuring, testing, and confirming that it works, I was going to post back here my solution.
But, since you posted the same solution, I will mark yours as the solution!
Thanks and kudos!
When you're working with bookmarks you can have them remember the state of filters, slicers etc.
You could create a disconnected table containing rows for button A, B & C. When the appropriate button is active make sure that a filter is applied on the disconnected table and at the same time clear the selections on the other slicers. You can then use SELECTEDVALUE on the disconnected table to determine which button is active.
Hi @WishAskedSooner, try one of these:
ISFILTERED – DAX Guide
ISCROSSFILTERED - DAX Guide
FILTERS - DAX Guide
Good luck with your project! 🙂
Thank you so much for your prompt reply!
I am uncertain if the FILTER functions above will work. For example,
A user clicks Button B and makes a selection in Slicer B. Next, the user clicks Button A, but does not clear Slicer B before doing so. Then, the user makes a selection in Slicer A.
Thus, both Slicers A and B will be filtered. In thinking some more about this scenario, if there was a way to programmatically clear the slicers when they click one of the buttons, maybe that would work? But, I don't know how to go about doing that.
So, your thoughts?
I am very curious on how others have designed solutions for this business requirement.
TIA!
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 |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
87 | |
54 | |
45 | |
40 | |
36 |