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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
egarstad
Frequent Visitor

DAX measure to return minimum absolute value while maintaining sign

Hi All,

I have hit a roadblock with a measure I am trying to create.

I have the following table:

Order

Work CenterActual Run TimeExpected Run Time
1

A

3020
2A2020
3B1520
4B1020

 

I am calculating the time deviation as [Actual Run Time] - [Expected Run Time].

I am trying to create a measure that calculates the smallest absolute time deviation while maintaining the sign.

So for Work Center A the two time deviations are 10 and 0. I want the measure to return 0.

For Work Center B the two deviations are -5 and -10. I want the measure to return -5.

The measure will be displayed in a table visual like this:

Work CenterMin Run Time Deviation
A0
B-5

 

I have created the following measure that calculates the minimum absolute value but I can't figure out how to keep the sign if the time deviation is negative.

 

Min Run Time Deviation =
MINX ( Table1, ABS ( Table1[Actual Run Time] - Table1[Expected Run Time] ) )
 
Any advice would be greatly apprecited.
 
Thanks!
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Well, here is one way, but I don't like it because if you have a 5 and a -5 together you will end up with the -5. Not sure if that is OK.

 

PBIX attached.

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

Well, here is one way, but I don't like it because if you have a 5 and a -5 together you will end up with the -5. Not sure if that is OK.

 

PBIX attached.

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi Greg,

The solution you provided works for my use case. The chances of having identical positive and negative deviations is almost 0 as the actual times are recorded in milliseconds. Thanks for the help!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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