Thank you, But when I key 8.15 it gives me 8:09. How do I convert 8.15 to
8:15?
If you are entering hours and minutes as hh.mm (using a full-stop to
separate them rather than the colon), you can convert this to normal
time format as follows:
=VALUE(INT(A1)&":"&MOD(A1,1)*100&":0")
I assumed earlier (as did the other responders) that you had hours and
decimal minutes, hence the factor of 60.
Hope this helps.
Pete
> Thank you, But when I key 8.15 it gives me 8:09. How do I convert 8.15 to
> 8:15?
[quoted text clipped - 15 lines]
> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
> >> > Can this be done?
Floyd Forbes - 21 Aug 2006 18:01 GMT
Pete_UK, When I key 8.20 I get
#############################################.
How can I get 8:20 to show?
> If you are entering hours and minutes as hh.mm (using a full-stop to
> separate them rather than the colon), you can convert this to normal
[quoted text clipped - 28 lines]
>> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
>> >> > Can this be done?
Dave Peterson - 21 Aug 2006 19:33 GMT
I think you're getting hit by too many digits:
=VALUE(INT(A1)&":"&ROUND(MOD(A1,1)*100,0)&":0")
Seems to work ok.
> Pete_UK, When I key 8.20 I get
> #############################################.
[quoted text clipped - 32 lines]
> >> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
> >> >> > Can this be done?

Signature
Dave Peterson
Sandy Mann - 21 Aug 2006 20:00 GMT
Just another way:
=INT(A1)/24+(MOD(A1,1))/14.4

Signature
HTH
Sandy
In Perth, the ancient capital of Scotland
sandymann2@mailinator.com
Replace@mailinator.com with @tiscali.co.uk
> If you are entering hours and minutes as hh.mm (using a full-stop to
> separate them rather than the colon), you can convert this to normal
[quoted text clipped - 28 lines]
>> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
>> >> > Can this be done?
One more:
=TIME(INT(A1),MOD(A1,1)*100,0)
> Thank you, But when I key 8.15 it gives me 8:09. How do I convert 8.15 to
> 8:15?
[quoted text clipped - 15 lines]
> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
> >> > Can this be done?

Signature
Dave Peterson
Floyd Forbes - 21 Aug 2006 19:53 GMT
Thank you for your help. You are the best.
Floyd Floyd
Turks & caicos Islands
B.W.I
> One more:
>
[quoted text clipped - 19 lines]
>> >> > How would I go about converting 8.00 to 8:00:00 AM in excel.
>> >> > Can this be done?