convert 7h 40.80n into time format

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

Guest

I need to convert a column of time information from its curent format to one
excel formulas can read.

what I have now is : 7h 40.80n (7 hours 40.8 minutes)

any ideas?


Todd
 
I need to convert a column of time information from its curent format to one
excel formulas can read.

what I have now is : 7h 40.80n (7 hours 40.8 minutes)

any ideas?


Todd

Assuming your format is as you describe above, then

=LEFT(A1,FIND("h",A1)-1)/24+MID(A1,FIND("h",A1)+2,LEN(A1)-FIND("h",A1)-3)/1440

should work.

If the format is more variable, post back with some of the variations.
--ron
 

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