mySQL timestamp to readable format

  • Thread starter Thread starter ebowman
  • Start date Start date
E

ebowman

How would I go about doing this? The format is 20070112130325, so
basically YYYYMMDDhhmmss. Does Excel have anything built in to convert
this to a readable format or do I have to parse it to format it?
 
You could do it by
=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))and format as dd/mm/yyyy hh:mm:ss or as you wish.--David Biddulph<[email protected]> wrote in messageHow would I go about doing this? The format is 20070112130325, so> basically YYYYMMDDhhmmss. Does Excel have anything built in to convert> this to a readable format or do I have to parse it to format it?>
 

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

Back
Top