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

Ratio calculation from same column

The below screenshot is an example of sorted data where we have city, month, the numerator (Sales), the denominator (Opportunity) and values. Now, we want to calculate the Sales % i.e., Sales / Opportunity – city wise + month wise, and create a dashboard for the same. I am unable to do so in Power BI, please help.

 

Power BI.jpg

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @mohuas

 

Try this MEASURE

 

Sales% =
DIVIDE (
    CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Sales" ),
    CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Opportunity" )
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @mohuas

 

Try this MEASURE

 

Sales% =
DIVIDE (
    CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Sales" ),
    CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Opportunity" )
)

@Zubair_Muhammad Thank You so much for the help. The provided solution worked. 🙂

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