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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
cairmor
Helper I
Helper 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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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