Forum Discussion
Anonymous
5 years agoNot applicable
How to find the time difference between columns
Hi Everyone, I have two columns which is a time format HH:MM:SS AM/PM. One is when the order was placed and second when the order was completed. I want to find out how long does it take to comple...
- 5 years ago
Hi Anonymous
Subtract the start time from the end time.
TimeDiff = 'Times'[End] - 'Times'[Start]Regards
Phil
- 5 years ago
Anonymous ,
Two way If you need time
Time = [Datetime2] -[Datetime1]
Diff in second= datediff([Datetime1],[Datetime2],second)
PhilipTreacy
Super User
5 years agoHi Anonymous
Subtract the start time from the end time.
TimeDiff = 'Times'[End] - 'Times'[Start]
Regards
Phil