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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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"
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |