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.
Hello,
I have a report that has many filter options (15+) and multiple values could be chosen in one filter. Because many of the filters have more options than can be displayed without scrolling, my users would like to be able to know what filter values are applied to the tables/visuals they are viewing. When I searched for solutions, what I find seems to apply if only one selection is chosen in a single filter, not multiple.
I am hoping there is a way to display all selected values for all filters.
Any guidance is appreciated!
Solved! Go to Solution.
Hi @szub ,
First thing really curious to know that is the requirement really to have like 15+ slicers/filters on a single report page?
If it is true, seems a weird requirement to me. 🙂
Won't ask further questions and will suggest 2 approaches that I can think of right now.
Consider the following scenario where I have got the following:
Now whenever, you make a selection in your slicer, the multi-row card visual will display values based on your selection in the slicer on this report page. See below:
So, this is one way you can use to display multiple selections from a slicer on your report page.
Similarly you can create this for multiple slicers on your page.
But, this approach may end being cumbersome when you have like 15+ slicers on your report page.
Another way could be to move all your slicers to Filter Pane in Power BI Desktop.
So, whenever you select something in your filters, the selected values are highlighted as shown:
Thanks,
Pragati
Hi @szub ,
Try like below :
Filters Selected (All Except version) =
IF (
ISFILTERED ( MyTable[MyColumn] ),
VAR ExcludedValues =
EXCEPT ( ALL ( MyTable[Column] ), FILTERS ( MyTable[MyColumn] ) )
RETURN
"All Except " & CONCATENATEX ( ExcludedValues, MyTable[MyColumn], ", " ),
"ALL"
)
refer :https://community.powerbi.com/t5/Desktop/Text-field-to-show-the-selected-filter/m-p/276520
Wish it is helpful for you!
Best Regards
Lucien
Hi @szub ,
First thing really curious to know that is the requirement really to have like 15+ slicers/filters on a single report page?
If it is true, seems a weird requirement to me. 🙂
Won't ask further questions and will suggest 2 approaches that I can think of right now.
Consider the following scenario where I have got the following:
Now whenever, you make a selection in your slicer, the multi-row card visual will display values based on your selection in the slicer on this report page. See below:
So, this is one way you can use to display multiple selections from a slicer on your report page.
Similarly you can create this for multiple slicers on your page.
But, this approach may end being cumbersome when you have like 15+ slicers on your report page.
Another way could be to move all your slicers to Filter Pane in Power BI Desktop.
So, whenever you select something in your filters, the selected values are highlighted as shown:
Thanks,
Pragati
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
37 | |
31 | |
26 |
User | Count |
---|---|
96 | |
84 | |
43 | |
40 | |
35 |