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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
ksivaganesh99
Helper II
Helper II

Display all the selected filter items in the filter pane section on the report

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.

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @ksivaganesh99 

 

You can hover over or click on the funnel icon on every visual and it will show all filters applied.

 

image.png

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"
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

View solution in original post

3 REPLIES 3
BerryBIA
Advocate I
Advocate I

the solution here is not correct as it is a solution for slicer values, not the fitler bar.

v-xuding-msft
Community Support
Community Support

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.

 

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Mariusz
Community Champion
Community Champion

Hi @ksivaganesh99 

 

You can hover over or click on the funnel icon on every visual and it will show all filters applied.

 

image.png

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"
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors