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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
Taro_Gulat
Regular Visitor

Timestamp Difference

Hi all, 

 

I am having difficulty in calculating the difference between two timestamp when start and end days are different. For the same day it is working. 

Taro_Gulat_0-1734361321901.png

In above case i need to calculate time difference between start and end for each step. The result should be in HH:MM:SS format. 

 

Can anyone help?

Thanks

1 ACCEPTED SOLUTION
Bibiano_Geraldo
Super User
Super User

Hi @Taro_Gulat ,
Create a new calculated column in your table using this DAX:

TimeDifference = 
VAR TotalSeconds = DATEDIFF('Table'[Start], 'Table'[End], SECOND)
VAR Hours = INT(TotalSeconds / 3600)
VAR Minutes = INT(MOD(TotalSeconds, 3600) / 60)
VAR Seconds = MOD(TotalSeconds, 60)
RETURN 
FORMAT(Hours, "00") & ":" & FORMAT(Minutes, "00") & ":" & FORMAT(Seconds, "00")

 

Your final result will look like this:

Bibiano_Geraldo_0-1734364231861.png

 

 

View solution in original post

1 REPLY 1
Bibiano_Geraldo
Super User
Super User

Hi @Taro_Gulat ,
Create a new calculated column in your table using this DAX:

TimeDifference = 
VAR TotalSeconds = DATEDIFF('Table'[Start], 'Table'[End], SECOND)
VAR Hours = INT(TotalSeconds / 3600)
VAR Minutes = INT(MOD(TotalSeconds, 3600) / 60)
VAR Seconds = MOD(TotalSeconds, 60)
RETURN 
FORMAT(Hours, "00") & ":" & FORMAT(Minutes, "00") & ":" & FORMAT(Seconds, "00")

 

Your final result will look like this:

Bibiano_Geraldo_0-1734364231861.png

 

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.