I am storing a time counter in minutes (i.e 20, 75, 211, etc.).
In oredr to present it in a "H:MM" format, I have used the following:
=CONCATENATE(TEXT(INT(F7/60),"00"),":",TEXT(MOD(F7,60),"00"))
Could it be there's no elegant way/built in function to do this conversion?
Thanks in advance!
In oredr to present it in a "H:MM" format, I have used the following:
=CONCATENATE(TEXT(INT(F7/60),"00"),":",TEXT(MOD(F7,60),"00"))
Could it be there's no elegant way/built in function to do this conversion?
Thanks in advance!