Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have the following number (in minutes):
106,2241116089
I need to convert it to time format (hh:mm).
It would be something like: 01:47
Do you know how to do that?
Thank you!!!
May be this?
=interval(FieldName/24/60, 'hh:mm')
May be this?
=interval(FieldName/24/60, 'hh:mm')
Or
=Time((25569 + Round(FieldName/1000) / 86400), 'hh:mm')