Greetings!
Another seely issue... how can I do the data convertion proposed below?
Minutes
------------------------
240
135
-120
TO
Hours
------------------------
04:00
02:15
-02:00
I tried to divide it per 60 and change the displaying format, but did not worked.
Any thoughts???
Thank you all!!!
This is very strange. I'm trying this formula
=interval(Minutes/24/60, 'hh:mm')
and it gives
-960 -16:00
-1440 -24:00
Looks correct (?)
Try this expression:
num(min/60, '#,##0') & ':' & Mod(min,60)
where min is your minutes field or variable.
The simpliest way I can think of:
=time(Minutes/24/60, 'hh:mm')
Try this:
=interval(avg(FIELDMINUTES)/1440,'h:mm')
(1440 = minutes in a day)
Hi Thiago,
Strange that the second line returns 00:26?
Because:
=interval(avg(52)/1440,'hh:mm') returns : 00:52
The rest looks good. Something with the format maybe?
Use combination of mine and Dennis:
=
interval(Minutes/24/60, 'hh:mm')
Cannot figure out this anomalies... most of the results are correct.
Thank you so much in advance!
This is very strange. I'm trying this formula
=interval(Minutes/24/60, 'hh:mm')
and it gives
-960 -16:00
-1440 -24:00
Looks correct (?)