F
Floyd Forbes
How would I go about converting 8.00 to 8:00:00 AM in excel.
Can this be done?
Can this be done?
Hi FloydFloyd said:How would I go about converting 8.00 to 8:00:00 AM in excel.
Can this be done?
Pete_UK said:Assuming your value is in A1, try this:
=VALUE(INT(A1)&":"&MOD(A1,1)*60&":00")
and use a custom format on the cell to display it with AM/PM.
Hope this helps.
Pete
=(A1/24)+A1
Floyd said:Thank you, But when I key 8.15 it gives me 8:09. How do I convert 8.15 to
8:15?