You have a number of options, depending on what you need. The simplest is to format a cell for
time, and in the cell use a formula like
=A2/24
Where A2 has the 6.18 value.
HTH,
Bernie
MS Excel MVP
"Ron" <R...@discussions.microsoft.com> wrote in message
news:EF32A835-8653-4BE8...@microsoft.com...
Regards,
Fred
"Ron" <R...@discussions.microsoft.com> wrote in message
news:EF32A835-8653-4BE8...@microsoft.com...
The answer to Ron's question is that the way to do the conversion is =A1/24,
and format the result in a time format to suit your preferences.
--
David Biddulph
"Eva" <E...@discussions.microsoft.com> wrote in message
news:AEF52DD9-A30C-455B...@microsoft.com...
Excel stores it's times as fractions of a day (24 hours)
Format the cell as hh:mm
then with 6.15 in cell A1 =A1/24
--
Regards
Roger Govier
"Ron" <R...@discussions.microsoft.com> wrote in message
news:EF32A835-8653-4BE8...@microsoft.com...
> __________ Information from ESET Smart Security, version of virus
> signature database 4743 (20100104) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>
__________ Information from ESET Smart Security, version of virus signature database 4743 (20100104) __________
The message was checked by ESET Smart Security.
Well, the "simple" answer is: =A1/24
with the Custom format [h]:mm .
But 6.18 will display as 6:10, not 6:11. The reason is: 60*0.18 = 10.8
sec, and generally, Excel truncates seconds when displaying with an hh:mm
format [1].
So if you really want 6:11, you should do:
=ROUND(A1*60,0)/1440
where 1440 is 60*24.
-----
Endnotes
[1] I said that Excel "generally" truncates seconds when displaying hh:mm.
Actually, it sorta-rounds seconds, then truncates. So 6:10:59 (hh:mm:ss) is
displayed as 6:10 (hh:mm), but 6:10:59.51 is displayed as 6:11. I say "sorta
round" because 6:10:59.5 is displayed as 6:10.
Thanks.
If you still need help, tell us where your data is (ie E1, A27:A46), and
we'll give you a specific formula.
Regards,
Fred
"Tbazemore" <Tbaz...@discussions.microsoft.com> wrote in message
news:F10254F7-D54E-441D...@microsoft.com...
Tabatha
"Fred Smith" wrote:
> You need to change A1 to whatever cell your hours are in. As you did not
> specify any cell addresses, it's impossible for us to know where your data
> is. So we use A1 as a sample.
>
> If you still need help, tell us where your data is (ie E1, A27:A46), and I need to covert it to hours/hundredths
> .
>
First you say you have decimal hours, and want to convert to a time. Now you
say you have a time, and need the decimal hours. So let's try again:
1. In B1, enter =a1*24
2. Format as a number with two decimal places
2. Copy this formula down to B15
You should now have your results in cells b1:b15. If you don't get the
results you are looking for, it's probably because you have text, rather
than a time. Convert the text to a time (by, for example, using Text To
Columns) in this case.
Regards,
Fred
"Tbazemore" <Tbaz...@discussions.microsoft.com> wrote in message
news:5B2117F7-B327-4123...@microsoft.com...