Forum Discussion
Issue Converting (Date) HH:MM:SS to Minutes
- Apr 28, 2024
=HOUR(A1)*60 + MINUTE(A1) + SECOND(A1)/60
Slight differences in that I never use relative references, always names and array formulas.
= 24 * 60 * MOD(times, 1)
where 'times' is a named range containing the time durations. The MOD function removes entire days if that is required.
- SergeiBaklanApr 29, 2024MVP
Based on the sample we shall not remove dates and take duration in minutes, thus simply
= 24 * 60 * time
Adam08780 , I guess this misprint, in the sample 121:02:08 is converted to 7262.08, i.e. to 7262 minutes and 08 seconds. Actually that shall be 7263.13 minutes. We may convert to such strange format with
=INT( 24 * 60 * time) + MOD(24 * 60 * time,1)*60/100
but the result shall not be used in other calculations.
- PeterBartholomew1Apr 29, 2024Silver Contributor
Fair enough. I was looking at Nico's solution and set out to replicate that result.
Looking at your post reminds me of another way of performing the somewhat strange calculation
= DOLLARFR(24*60*timeInterval, 60)
The use the result within further calculation requires DOLLARDE.
I always found the functions distinctly strange but maybe that stems from having a technical background.
- SergeiBaklanApr 29, 2024MVP
Exactly