Hello,
I am testing out the TIME() function and working on a formula to determine the amount of hours and minutes elapsed between a Start and Finish columns. I thought I had it figured out, however, I noticed that for my row that has a Start time of 3 pm and a Finish time of 5 pm, it was showing a time difference of "1 hour(s) and 60 minutes." Why is is not showing 2 hours and 0 minutes?
Formula used:
=IFERROR(ROUNDDOWN((TIME(Start@row) - TIME(Finish@row)) * 24) + " hour(s) and " + ([Time Difference - decimal]@row * 24 - INT([Time Difference - decimal]@row * 24)) * 60 + " minutes", " ")