Time to Decimal point

  • Thread starter Thread starter Steved
  • Start date Start date
S

Steved

Hello from Steved

I would like to convert 9:15 to 9.15 (Decimal).
Thank you in Advance
 
Hi
if you only want to change the delimiter you may use a custom format
like
hh.mm
for this cell.
If you want to convert it to a decimal value I'd assume that 9.25 would
be your desired result?
use
=A1*24
to achieve this (format the resulting cell as number)
 
Hi

Assuming you want to convert the data value 9:15 to the number 9.15
this may be what your're after, assuming the date value 9:15 is in cel
A1

=HOUR(A1)+MINUTE(A1)/10
 
Do you need to convert? If you only need to display, you can use

Format/Cells/Number/Custom and enter h.mm


If you need to convert:

A1: 9:15
B1: =INT(A1*24)+MOD(A1*24,1)*0.6

Format B1 as General or a number format.

An alternative:

B1: =HOUR(A1)+MINUTE(A1)/100
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top