time !

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!
 
N

Niek Otten

=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.
 
R

Rick Merrill

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!
 
Top