Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello Team,
I am working on a project and the slicer has the group names.
ex - India, Australia, New zealand
i have separate donut visuals for the three groups on the overview page.
Now if end user selects India from the slicer it should only show India visual and other two visuals should hide.
also if the visual header has drill down or action button to navigate to sub group is it still possible to show/hide visual using the slicer
Solved! Go to Solution.
Hi @Powerbi_me
Thank you very much MFelix and 123abc for your prompt reply.
For your question, here is the method I provided:
Here's some dummy data
“Table”
Create a new table to use as a slicer.
Slicer Table = SELECTCOLUMNS('Table', "Group", 'Table'[Group])
Create a measure to determine the "Group" value selected by the slicer.
Group Select =
IF(
ISFILTERED('Slicer Table'[Group])
&&
SELECTEDVALUE('Slicer Table'[Group]) = SELECTEDVALUE('Table'[Group]),
1,
0
)
Apply the following filter criteria to each donut visual:
You can get:
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Powerbi_me
Thank you very much MFelix and 123abc for your prompt reply.
For your question, here is the method I provided:
Here's some dummy data
“Table”
Create a new table to use as a slicer.
Slicer Table = SELECTCOLUMNS('Table', "Group", 'Table'[Group])
Create a measure to determine the "Group" value selected by the slicer.
Group Select =
IF(
ISFILTERED('Slicer Table'[Group])
&&
SELECTEDVALUE('Slicer Table'[Group]) = SELECTEDVALUE('Table'[Group]),
1,
0
)
Apply the following filter criteria to each donut visual:
You can get:
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can achieve this in Power BI by using bookmarks and selection panes. Here’s a step-by-step guide:
Create Bookmarks:
Set Up the Slicer:
Link Bookmarks to Slicer:
Add Buttons for Navigation:
Here’s a simple DAX example to get you started:
SelectedGroup = SELECTEDVALUE('YourTable'[GroupName])Then, use this measure to control the visibility of your visuals.
If you need more detailed steps or run into any issues, feel free to ask! 😊
Hi @Powerbi_me ,
You cannot show/hide visuals with a Slicer you need to use bookmarks and bookmarks navigator. Bookmarks can be related with a specific data so you can force that when that bookmark is in place it filter out to India:
https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-bookmarks
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.