Conversion of time into percentage seems to be the idea.
Conversion of time into percentage seems to be the idea.
I have a column of numbers in HH:mm format (2:15, 3:00, 1:45, etc). To convert 2:15 into a percent (2.25 hrs), I used the formula you provided. It works well for most cases except when hours are whole numbers like 1:0 or 2:0. I'm not sure why zeros cause issues in the calculation. The message says the MOD parameter expects numbers, but '2:0' is text and can't be converted. Any assistance would be greatly appreciated.
I’d convert everything to minutes and then perform the calculation. So from memory something like this
=(Hour(F5)*60)+(Minute(F5))
Also, the percentage refers to what 100% represents.
Tested with OpenOffice Calc, it functions properly for all cases:
=HOUR(A1)+MINUTE(A1)/60
A1 is the cell containing the date, for instance.
8:00 becomes 8.00
9:45 turns into 9.75
1:30 equals 1.5
Thanks for your input.
The suggested times are set accordingly.
I’m trying to understand if the durations are being rounded correctly.
Also, I need help formatting the numbers so they represent 45.5 hours.