Change to day format

  • Thread starter Thread starter Blue Fish
  • Start date Start date
B

Blue Fish

Hello:

I have import a text file that the Raw Data is "20070722130054". How
can I make the excel to recognize as "2007-07-22 13:00:54"?

Thanks!
 
Assuming your value is in A2, but this in B2:

=DATE(LEFT(A2,4),MID(A2,5,2),MID(A2,7,2))
+VALUE(MID(A2,9,2)&":"&MID(A2,11,2)&":"&RIGHT(A2,2))

Format the cell as Custom --> yyyy-mm-dd hh:mm:ss, then copy the
formula down.

Hope this helps.
 
In a helper column:

try:

=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))+TIME(MID(A1,9,2),MID(A1,11,2),MID(A1,13,2))

Assuming text field is in A1 (etc)

format as CUSTOM: yyyy-mm-dd hh:mm:ss

Then copy/paste special->values in your helper column.

HTH
 

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

Similar Threads

Problem formatting dates from CSV file 2
How to calculate the Date occurs 2
Calculate elapsed time excluding specific timeframe 10
Peak call times/hours 2
Time Format 1
Time query 9
Lookup 15
Calculating Time 3

Back
Top