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

Duration between two times

Hello all, I have the following data:

10/01/201923:5101:20
30/02/201913:1216:05
05/01/201922:4003:20
08/02/201917:3120:40

First column is data event, second is start time and thrid is end time. However, using a datediff function, it won't understand that the first line, for example, the start and end time are on different dates, and returns absurd numbers. Also, I don't have a date column referring to the third column, so I don't have 11/01/2019 in the example. Is there anyway to make this work?

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous 

First of all, make sure the two columns are timestamp columns

Else use time function and make them time stamp

 

Start Time = Time(left([Strat],2),right([Strat],2)) // Do same with end

 

My suggestion would make them datetime with date , You can leave  the date part if needed

New columns

Start date time = [Date]+[Start Time]

end Date time = if([Start Time] <[End Time ],[Date]+[EndTime],([Date]+[EndTime])+1)

 

Now you can use date diff

Diff = datediff([Start date time],[end Date time].day)

 

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous 

First of all, make sure the two columns are timestamp columns

Else use time function and make them time stamp

 

Start Time = Time(left([Strat],2),right([Strat],2)) // Do same with end

 

My suggestion would make them datetime with date , You can leave  the date part if needed

New columns

Start date time = [Date]+[Start Time]

end Date time = if([Start Time] <[End Time ],[Date]+[EndTime],([Date]+[EndTime])+1)

 

Now you can use date diff

Diff = datediff([Start date time],[end Date time].day)

 

 

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.