I have two datetime values date1: "2024-05-60 12:00:00" and date2: "2024-05-07 09:58:00" is it possible to calculate the difference in hh:mm between those two datetimes?
I have a formula called seconds
DateTimeDiff([date2],[date1],"seconds")
and a formula that converts that to hh:mm
DateTimeAdd("1900-01-01",[seconds],"seconds")
however, I don't think that this method works when working with datetimes over 24 hours, my example dates are under 24 hours and it still doesn't work, I'm assuming because it's on different days?
if so is it possible to calculate the difference between the 2 dates in my use case?