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
Anonymous
Not applicable

Make a result visual count the % that are filtered interactively on a visual

Hi there, 

The question might be a bit confusing but it's just a simple enquiry, I have a visual like this below:

KA95_0-1655910943663.png

This displays a % of a grand total of userid count. And I also have a mini card visual in the top right corner that says a 100% with the exact same column applied too it (with % of grand total)

However, I want the top right card visual to show and add up %'s when multiple bars are clicked on the report, such as below:

KA95_1-1655911101153.png

As you can see, the first 3 bars have been highlighted (clicked on), but the top right % is still 100%, I want it to show the total % highlighted which would be 27.63%. I figured with both visuals sharing the exact same value, it would automatically do this but it isn't. 

How would this be possible? And is it possible? 

 

 

 



 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi guys, figured it out. I needed to filter the other category on the visual for it to work, however, blanks were also filtered out so I made sure to filter it with > 1 (categories were numerical) 

% Match =
DIVIDE ( [User Count], CALCULATE ( [User Count], ( Candidates[ap_imd_decile] > 0 ) ) )

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi guys, figured it out. I needed to filter the other category on the visual for it to work, however, blanks were also filtered out so I made sure to filter it with > 1 (categories were numerical) 

% Match =
DIVIDE ( [User Count], CALCULATE ( [User Count], ( Candidates[ap_imd_decile] > 0 ) ) )
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Ashish_Mathur 

Thank you but unfortunately the file has too much confidential data and it would take a really long time to make a dummy file. Do you know of how to create a measure that can do this function that I request? 

Anonymous
Not applicable

Hi @Anonymous ,

 

Is the percentage value a measure?

If so you could create a new measure using SUMX() function and put it in the card visual.

Like:

SUMX(table,[percentage])

 

Best Regards,

Jay

Anonymous
Not applicable

Hi @Anonymous 

Yes on both visuals the value's are measures, I've tried that very measure you made and it's not working, the %'s aren't the same as the %'s on the graphic. 

 

So if I use this measure 

 

% match = SUMX(LadderProccess, [User Count] / 1000)

 

I put in the / 1000 to lose the 0's on the %, but it's still not working properly as shown below:

KA95_0-1656365150148.png

 

Do you know why that is? 

 

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