Time Data Conversion

C

cmiedaner

Hello.

My time data is presented like this:

093004000
093005000

Which is hh:mm:ss.millisec

I would like to convert the data so that when I add or subtract the 2 values I get the actual time difference in hh:mm:ss.

In the example above, if I did (093005000
- 093005000) the result would be 00:00:01.

Thanks in advance.
 
C

Claus Busch

Hi,

Am Tue, 2 Oct 2012 09:36:29 -0700 (PDT) schrieb [email protected]:
093004000
093005000

Which is hh:mm:ss.millisec

I would like to convert the data so that when I add or subtract the 2 values I get the actual time difference in hh:mm:ss.

In the example above, if I did (093005000
- 093005000) the result would be 00:00:01.

try:
=(A2-A1)/86400000
and format the cell hh:mm:ss


Regards
Claus Busch
 
C

cmiedaner

Hello. My time data is presented like this: 093004000 093005000 Which is hh:mm:ss.millisec I would like to convert the data so that when I add or subtract the 2 values I get the actual time difference in hh:mm:ss. In the example above, if I did (093005000 - 093005000) the result would be 00:00:01.Thanks in advance.

Thanks. I think that worked. I found that when I took my data from the database and pasted into excel the time formating changed on me.

If the data pastes into excel like this:

Time1 Time2 Diff
93003000 93010000 00:00:07
103040000 113040000 01:00:00

Is there a way to get the result in the 'Diff' column ?
 
Top