I am receiving a report from a vendor that lists call time minutes of usage
in decimal form, i.e. 5.15. When I try to convert this figure into actual
time format using the formula, =TEXT(G36/24,"H:MM:SS"), my return is 5:09:00.
It appears this formula is returning the amount of time after midnite and not
what I am looking for, which is the time expressed in actual hours and or
minutes used.
Richard Schollar - 10 Oct 2008 16:02 GMT
Hi
Is 5.15 equivalent to 5 minutes and 15 seconds? If so, you could use the
following to convert to Excel time (remember to format the formula cell in a
time format):
=(A1+MOD(A1,1)*40/60)/1440
1440 being the number of minutes in a day.
Richard
>I am receiving a report from a vendor that lists call time minutes of usage
> in decimal form, i.e. 5.15. When I try to convert this figure into actual
[quoted text clipped - 4 lines]
> what I am looking for, which is the time expressed in actual hours and or
> minutes used.
Peo Sjoblom - 10 Oct 2008 16:31 GMT
Why not just
=A1/1440

Signature
Regards,
Peo Sjoblom
> Hi
>
[quoted text clipped - 17 lines]
>> what I am looking for, which is the time expressed in actual hours and or
>> minutes used.
Richard Schollar - 10 Oct 2008 16:49 GMT
Peo
As my reply asked, it depends on what is represented by the .15. If it
means 15/100 of a minute then your formula is indeed the correct one.
Richard
> Why not just
>
[quoted text clipped - 23 lines]
>>> or
>>> minutes used.
Peo Sjoblom - 10 Oct 2008 16:57 GMT
Yes you are correct, sometimes I read questions too fast. I just went with
the what the
OP tried with his TEXT formula.

Signature
Regards,
Peo Sjoblom
> Peo
>
[quoted text clipped - 30 lines]
>>>> or
>>>> minutes used.
Meebers - 10 Oct 2008 17:28 GMT
Ok here is my guess. 5.15 minutes is equal to 5 minutes and 9 seconds. I
would use =G36/1440 and format as mm:ss. The answer = 05:09
> Yes you are correct, sometimes I read questions too fast. I just went with
> the what the
[quoted text clipped - 34 lines]
>>>>> or
>>>>> minutes used.