How do convert time into numeric

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi Charles here,

Convert the time in to number like 96:47 , I want to convert as 96 or 97 (
numeric value)
 
If you still want to keep the "Time" format, you can go to Format|Cell
and choose Custom from the list, then type [h].

or if you want the number format, use: =ROUND(A1*24,0) and format a
number, where A1 contains the original time
 
Multiply with 24 and use ROUND or INT

=ROUND(A1*24,0)

=INT(A1*24)

where A1 holds 96:47
 
Thanks, it works.

Peo Sjoblom said:
Multiply with 24 and use ROUND or INT

=ROUND(A1*24,0)

=INT(A1*24)

where A1 holds 96:47


--

Regards,

Peo Sjoblom
 

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