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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.