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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
rock4sridhar
Regular Visitor

Dynamic Measure depends on slicer value

Hi,

 Need help in building a pie chart where the data is as follows,

 

col1 col2

A      150

B       500

C       200

 

when we click "A" on the slicer,the pie chart should display A (% out of 100) and remaining percentage should be B+C(%) should be displayed.can anyone help me in this scenario

2 ACCEPTED SOLUTIONS

Basic Percentage Formula = 
var Numerator = LOOKUPVALUE(Table1[Column2], Table1[Column1], SELECTEDVALUE(Table1[Column1]))
var Denominator = CALCULATE(SUM(Table1[Column2]), ALLEXCEPT(Table1, Table1[Column2]))
return
DIVIDE(Numerator, Denominator)


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

View solution in original post

Sorry for the late response,

 

If you click your visual and click Format > Edit Interactions. Some new options should appear on your visual. What you want to do is change it to HIGHLIGHTING mode.

 

highlight.png

 

Hope that helps



Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

View solution in original post

6 REPLIES 6
rock4sridhar
Regular Visitor

i am a newbie with this

Basic Percentage Formula = 
var Numerator = LOOKUPVALUE(Table1[Column2], Table1[Column1], SELECTEDVALUE(Table1[Column1]))
var Denominator = CALCULATE(SUM(Table1[Column2]), ALLEXCEPT(Table1, Table1[Column2]))
return
DIVIDE(Numerator, Denominator)


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

measure_data.pngoverview.png

Sorry for the late response,

 

If you click your visual and click Format > Edit Interactions. Some new options should appear on your visual. What you want to do is change it to HIGHLIGHTING mode.

 

highlight.png

 

Hope that helps



Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

Hi i have created the table in the same name and also i have create a new measure and applied it to the pie chart..but when i choose slicer option A only A's percentage is showing in pie chart...i have added the screenshots also please can u guide me where i am going wrong

Hi i have tried the above formula but its not working though... 😞

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors