Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi, thanks in advance for the help on this.
I have two measures which are quite complex. that yield results at a row level that look something like this:
| Account Id | Measure A | Measure B |
| A1 | 3 | 2 |
| A2 | 5 | 9 |
| A3 | 7 | 6 |
| A4 | 2 | 3 |
I need to calculate a new meaure which is sum(Measure A - Measure B).
But for each row, if Measure A - Measure B is less than zero, I want to set the result to zero, so the desired result would be:
A1: 3 - 2 = 1
A2: 5 - 9 = 0
A3: 7 - 6 = 1
A4: 2 - 3 = 0
Total = 2
How do I instruct power bi to calculate the measures at a row level applying the zero rule first, then aggregate, rather than aggregating then applying the zero rule.
Thanks
Robbie
Solved! Go to Solution.
Hi @robbielambert ,
Suppose your measures are Measure AA and Measure BB
Diff of Measure = SUMX('Table',[Measure AA] - [Measure BB])
Final Measure =
SUMX('Table', IF ([Diff of Measure] < 0 ,0, [Diff of Measure]))
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
Hi @robbielambert ,
Suppose your measures are Measure AA and Measure BB
Diff of Measure = SUMX('Table',[Measure AA] - [Measure BB])
Final Measure =
SUMX('Table', IF ([Diff of Measure] < 0 ,0, [Diff of Measure]))
Regards,
Harsh Nathani
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
Hi Harsh,
Works like a treat!
You are a scholar and a gent thank you!
Robbie
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 7 | |
| 6 |