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
PBIFNG
New Member

How to Build a Particular Measure for Gauge Chart in PowerBI

Hi,

I would like for my Gauge chart to display a percentage as a calculation from another two Values.

Value 1: Stage from a picklist (multiple stages, but I'm interested only in "Won" or "Lost")

Value 2: Dollar value assigned to each record under the various stages

Desired measure:   $ for all "Won" records / ($ for all "Won" + $ for all "Lost") = %

Example:

Record 1 - $50 - Lost

Record 2 - $30 - Won

Record 3 - $60 - Won

Total for all records = $140

Total Won = $90

Desired Calculation: $ total Won/($ total Won + $ total Lost)  = 64%

How would I accomplish this?

 

Thank you for the help in advance!

1 REPLY 1
amitchandak
Super User
Super User

@PBIFNG ,  Try a measure like

Divide( calculate(sum(Table[Value]), filter(Table, Table[Type]= "Won")), sum(Table[Value]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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