Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
PaulKraemer
Advocate II
Advocate II

Slicer allowing Multiple Selections - selecting predefined items with one click?

Hi,

 

I have added a Slicer Visual to a report in Power BI Desktop that allows the selection of multiple items (Suppliers in this case).  There are 47 Suppliers as of today, but there is a group of eight suppliers of interest that will be selected 95% of the time.  Is there a way that I can implement a way for users of my report to select this "group of eight" with one click rather than having to click each of these suppliers separately?

 

Any suggestions will be greatly appreciated.

 

Thanks in advance,

Paul

 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@PaulKraemer you should add another column in your table to group these slicers and then in slicer add this group column on top of slicer column, selection this group will select all the suppliers under this group:

 

Here is an example on adding a group column, you can always tweak the logic as you want.

 

Supplier Group = 
IF ( Table[Supplier Name] IN { "Supplier 1", "Supplier 2 }, "Top Suppliers", "Other" )

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

5 REPLIES 5
PaulKraemer
Advocate II
Advocate II

Thank you @jdbuchanan71 , @parry2k , and @danextian for your suggestions !

 

I ended up using parry2k's in this attempt, but I like danextian's idea of using a related table as it might make maintenance easier if the list of "Top Suppliers" needs to be added to or updated occasionally.  I'm going to play around with bookmarks also, and see what I can do accomplish with them.

 

I am a beginner, so I'm planning to try all options to get some experience.

 

I appreciate your help!

Paul

danextian
Super User
Super User

Hi @PaulKraemer 

 

Ensure to maintain a table of common selected suppliers in a table. Relate that to your actual suppliers table and create a calculated conditional column.

danextian_1-1738795450196.png

Supplier Category = 
IF ( NOT ( ISBLANK ( RELATED ( TopSuppliers[Supplier Name] ) ) ), "Group of 8", "Other Suppliers" )

 

danextian_0-1738795433729.png

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
parry2k
Super User
Super User

@PaulKraemer you should add another column in your table to group these slicers and then in slicer add this group column on top of slicer column, selection this group will select all the suppliers under this group:

 

Here is an example on adding a group column, you can always tweak the logic as you want.

 

Supplier Group = 
IF ( Table[Supplier Name] IN { "Supplier 1", "Supplier 2 }, "Top Suppliers", "Other" )

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

@PaulKraemer , the solution from @parry2k is the better way to go.  It is easier to maintain (bookmarks can be finicky) and would be usable across all your reporting since it is on the table.

jdbuchanan71
Super User
Super User

You could setup a bookmark that has the 8 selected and put a button on the page to trigger the bookmark.

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors