Reputation: 75
Is there a way to convert the following "text" data into a "time" data?
Here is a picture of the data:
I need to extract the numbers from the data for thousands of records at a time.
Does anyone have any ideas?
Upvotes: 0
Views: 55
Reputation: 75
I solved it with the following steps:
Upvotes: 3
Reputation: 152450
Since your data is uniform use this formula:
=LEFT(A1,2)+TIME(MID(A1,5,2),MID(A1,9,2),MID(A1,13,2))
Then format the cell:
[hh]:mm:ss
Upvotes: 3