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! Request now

Reply
BarryFletcher
Helper III
Helper III

Pie Chart values as a percentage of a static value

I need to create a pie chart that shows a value from a filed as a percentage of a "fixed" value. So I have a measurement of 7000 meters. My PowerBi Dashboard has values per building based on a slicer selection. Can I get each value on a pie chart as a percentage of the fixed 7000m value?

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @BarryFletcher 

You can use 3 Dax measures :
1.For 7000 :

divider = 7000
2. For selected building :
selected building = sum('Table'[Bealding area])
3 For the difference between 7000 and the selected part :
dynamic difference = [divider]- sum('Table'[Bealding area])
Result :
Ritaf1983_2-1702647705297.png

Pbix is attached

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

2 REPLIES 2
BarryFletcher
Helper III
Helper III

Thank you for the quick response and solution. Worked perfectly.

Ritaf1983
Super User
Super User

Hi @BarryFletcher 

You can use 3 Dax measures :
1.For 7000 :

divider = 7000
2. For selected building :
selected building = sum('Table'[Bealding area])
3 For the difference between 7000 and the selected part :
dynamic difference = [divider]- sum('Table'[Bealding area])
Result :
Ritaf1983_2-1702647705297.png

Pbix is attached

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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