Reformat A Time Value To Add/Subtract

G

Guest

My Time Values come in like this :

80814240354


I need to work with the last 8 characters. In this case 14240354 - which is
a time "XX:XX:XX:XX" (hours:minutes:seconds:milliseconds).

I need to be able to add and subtract inorder to measure the time
differences.

Is this possible.

Thank you in advance.
 
N

Niek Otten

=TIME(MID(A1,4,2),MID(A1,6,2),MID(A1,8,2))+RIGHT(A1,3)/24/60/60/1000
Format custom as hh:mm:ss.000

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| My Time Values come in like this :
|
| 80814240354
|
|
| I need to work with the last 8 characters. In this case 14240354 - which is
| a time "XX:XX:XX:XX" (hours:minutes:seconds:milliseconds).
|
| I need to be able to add and subtract inorder to measure the time
| differences.
|
| Is this possible.
|
| Thank you in advance.
 

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

Top