Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
Hi @mohuas
Try this MEASURE
Sales% =
DIVIDE (
CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Sales" ),
CALCULATE ( SUM ( TableName[Value] ), TableName[Attribute] = "Opportunity" )
)
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. 🙂
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.