I'm using a time-tracking sheet that calculates the time spent on a job by doing a simple subtraction between a start time and an end time in two cells.
The hh:mm
format would suffice in this case, or as a small modification I'm using [h] "h" mm "m"
, but the issue with both is that I do not want the hours to display when there are none (when hours = 0).
If for example 35 minutes are logged I would like the output to be 35 m
and not 0 h 35 m
. The [mm]
format might be an option then, but I would still like my time above 60 minutes to be displayed as 1 h 30 m
, and not 90 m
.
Please try:
[<0.04166666][mm] "m";[h] "h" mm "m"