time !

  • Thread starter Thread starter Rick Merrill
  • Start date Start date
R

Rick Merrill

I want o add up Time codes that are for 24 hours

The time codes are of the form
00001506

which means 15 seconds and 06 hundredths of a second.

obviously the problem is that the 'seconds' and the 'minutes'
fields are modulo 60 and the 'hours' field is modulo 24.

Thanks in advance!
 
=TIME(LEFT(A1,2),MID(A1,3,2),MID(A1,5,2))+RIGHT(A1,2)/24/60/60/100

Format Custom as hh:mm:ss.00

Now you can add and it will follow "your" rules.
 
Niek said:
=TIME(LEFT(A1,2),MID(A1,3,2),MID(A1,5,2))+RIGHT(A1,2)/24/60/60/100

Format Custom as hh:mm:ss.00

Now you can add and it will follow "your" rules.

gREAT!
 
Here's a simpler way.....

=TEXT(A1,"00\:00\:00\.00")+0

format as hh:mm:ss.0
 

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