Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
robbielambert
Frequent Visitor

Calculation ordering question

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 IdMeasure AMeasure B
A132
A259
A376
A423

 

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

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @robbielambert ,

 

 

1.jpg

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!

 

 

 

View solution in original post

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hi @robbielambert ,

 

 

1.jpg

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.