Jump to content

excel timestamp issue


nikhilboorla

Recommended Posts

I have a numbers like 20160715082219000000000 and i want to convert into timestamp like 2016-07-15 08:22:19 and delete that remaining 0's.Please suggest how to do this conversion?

Link to comment
Share on other sites

if your data is in cell A3, you can type in this formula in B3 and copy it down to other cells

=MID(A3,1,4)&"-"&MID(A3,5,2)&"-"&MID(A3,7,2)&" "&MID(A3,9,2)&":"&MID(A3,11,2)&":"&MID(A3,13,2)

Link to comment
Share on other sites

Good ..

58 minutes ago, compose said:

if your data is in cell A3, you can type in this formula in B3 and copy it down to other cells

=MID(A3,1,4)&"-"&MID(A3,5,2)&"-"&MID(A3,7,2)&" "&MID(A3,9,2)&":"&MID(A3,11,2)&":"&MID(A3,13,2)

Good job

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...