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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
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!