Forum Discussion
Difference between two times
- 5 years ago
Hi magus ,
Basically the datediff() function should work when the date format is HH:MM:SS.
You can also create a calculated column like this to calculated the minutes diff:
Basic calculation column = VAR diff = [Resolution hour] - [Claim submition hour] RETURN HOUR ( diff ) * 60 + MINUTE ( diff ) + SECOND ( diff ) / 60Attached a sample file in the below, hopes it could help.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi magus ,
Basically the datediff() function should work when the date format is HH:MM:SS.
You can also create a calculated column like this to calculated the minutes diff:
Basic calculation column =
VAR diff = [Resolution hour] - [Claim submition hour]
RETURN
HOUR ( diff ) * 60
+ MINUTE ( diff )
+ SECOND ( diff ) / 60
Attached a sample file in the below, hopes it could help.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.