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
Anonymous
Not applicable

DAX Help - Time Duration Sum when the date switches

Community, 

Hello, I'm fairly new to using the "Time" calculations in DAX and am looking for some help.

 

I have a DAX expression that is correctly delivering the duration of two times correctly, but when switching from AM to PM (Run ID 13 below) I get a duration that is the length of almost 24 hours. Below is the DAX as well as the table/data delivered

 

Wind On Duration = IF(
    HASONEVALUE(COEF_DATA[Run ID]),
    CALCULATE(MIN('TIME DATA'[Time])-MAX('TIME DATA'[Time])),
    SUMX(VALUES(COEF_DATA[Run ID]),
    CALCULATE(MIN('TIME DATA'[Time])-MAX('TIME DATA'[Time])))
    )  

 

 
tabletime1test.PNG
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
The date changes during Run ID 13, I'm not sure that I understand how to handle that. 
Any help in this matter would be greatly appreciated!!

 

4 REPLIES 4
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Where is the time column in your sample data and do you have built a date column?

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

Where is the Date in your data? Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Sample data as text.

 


@ 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...
amitchandak
Super User
Super User

@Anonymous ,

Try like

SUMX(summarize(COEF_DATA, COEF_DATA[Run ID],"_mes"
    CALCULATE(MIN('TIME DATA'[Time])-MAX('TIME DATA'[Time]))),[_mes])

 

Anonymous
Not applicable

@amitchandak 

Thanks for the response, I will repost with a better synopsis and data.

 
 
 
 
 
 
 
 
 
 

 

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.