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
Hi all,
I want to display all the selected items which user selects in the filter pane sections on the report page.
Is there any way I can acheive it.
Any help is highly appreciated.
Solved! Go to Solution.
You can hover over or click on the funnel icon on every visual and it will show all filters applied.
As an option, you can create a Measure that will list all the selected values of a specific column, but you will have to specify every column that is in the filter pane, below you can see an example.
Selected Slicer Values =
IF(
ISFILTERED('Product'[Brand]),
CONCATENATEX(
VALUES('Product'[Brand]),
'Product'[Brand], "; "
),
"All Selected"
)
the solution here is not correct as it is a solution for slicer values, not the fitler bar.
Hi @ksivaganesh99 ,
For the answer of @Mariusz , does it make sense? If it works for you, please accept it as solution. If not, maybe you could reference the blog: Displaying filter context in Power BI Tooltips to have a try. It shows the filters that be applied at the report, page, and visual levels into tooltips.
You can hover over or click on the funnel icon on every visual and it will show all filters applied.
As an option, you can create a Measure that will list all the selected values of a specific column, but you will have to specify every column that is in the filter pane, below you can see an example.
Selected Slicer Values =
IF(
ISFILTERED('Product'[Brand]),
CONCATENATEX(
VALUES('Product'[Brand]),
'Product'[Brand], "; "
),
"All Selected"
)
Advance 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.