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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
FebaVar
Regular Visitor

Multi card visual filter resets on selection of another visual/button

Hi,
I have added a top N filter to mymuticard. On selection of another visual/button, the filter resets to 'all.' Is there any method to change this?
Note: I want interractions between visuals to affect the displayed value in the mutlicard(without resetting the filter)
Thank you

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @FebaVar 

It's not a reset, your filter is just applied to the current visual. When you put a field into Filters on this visual, the filter is only valid for the current visual.

vyohuamsft_0-1721699308795.png

When you select another visual, its filter is completely new and needs to be set for it.

vyohuamsft_1-1721699610108.png

If you want the top N filters for all visuals, you might as well create a measure. Like this:

Top5Values = 
CALCULATE(
    SUM('Table'[Hours by Year]),
    TOPN(5, 'Table', 'Table'[Hours by Year], DESC)
)

Then put him into the individual visuals

vyohuamsft_2-1721700936264.png

 

How to Get Your Question Answered Quickly

Best Regards

Yongkang Hua

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi, @FebaVar 

It's not a reset, your filter is just applied to the current visual. When you put a field into Filters on this visual, the filter is only valid for the current visual.

vyohuamsft_0-1721699308795.png

When you select another visual, its filter is completely new and needs to be set for it.

vyohuamsft_1-1721699610108.png

If you want the top N filters for all visuals, you might as well create a measure. Like this:

Top5Values = 
CALCULATE(
    SUM('Table'[Hours by Year]),
    TOPN(5, 'Table', 'Table'[Hours by Year], DESC)
)

Then put him into the individual visuals

vyohuamsft_2-1721700936264.png

 

How to Get Your Question Answered Quickly

Best Regards

Yongkang Hua

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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