In the new Google sheets there's a way of formatting a number as a duration. Format -> Number -> Duration.
1
is formatted as24:00:00
1.2
is formatted as28:48:00
1.5
is formatted as36:00:00
0.03125
is formatted as0:45:00
.
I don't need the seconds in the duration representation, because they bloat my timesheet.
How can I format a duration as HH:mm (without using a formula to calculate hours and minutes and concatenate that with a colon). Is there a way of using the TEXT formula.
This is how I would like it:
1
is formatted as24:00
1.2
is formatted as28:48
1.5
is formatted as36:00
(I don't need12:00
which datetime-formatting would accomplish)0.03125
is formatted as0:45
[hh]:mm
. – Infix