Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
I have the following data set:
Area Item Cost
1 Yes 5
1 Yes 10
1 No 20
2 No 12
2 Yes 13
2 Yes 12
How do I achieve the following:
Sum of cost where Item is "yes" divided by Sum of cost with both "yes" and "no"?
It should be so easy, but I am afraid I simply can't crack it, and it is rather urgent.
Thank you in advance,
And happy holidays 😄
Solved! Go to Solution.
Hi,
Try this
=CALCULATE(SUM(Data[Cost]),Data[Item]="Yes")/SUM(Data[Cost])
Hope this helps.
Hi @Crav888,
Another try:
Measure =
CALCULATE ( SUM ( 'table3'[Cost] ), 'table3'[Item] = "Yes" )
/ CALCULATE ( SUM ( table3[Cost] ), ALL ( table3[Item] ) )Best Regards,
Dale
Hi,
Try this
=CALCULATE(SUM(Data[Cost]),Data[Item]="Yes")/SUM(Data[Cost])
Hope this helps.
Hi @Crav888,
You have to create Measure with FIlter then like below,
Measure Sum of Yes = CALCULATE(SUMX(Table3,Table3[Cost]),FILTER(Table3,Table3[Item]="YES")) Measure Sum of NO = CALCULATE(SUMX(Table3,Table3[Cost]),FILTER(Table3,Table3[Item]="NO")) Divide measure = ([Measure Sum of Yes]/([Measure Sum of Yes]+[ Measure Sum of NO]))
If it works, Please Like(kudo) my answer and accept as solution.
Regard,
Mehbub
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 42 | |
| 40 | |
| 40 | |
| 40 |