Text to Date function in Excel -


in excel have row many dates in it:
oct-13 nov-13 dec-13 jan-14 feb-14 mar-14 apr-14 may-14

however coded as: =text(ad42,"mmm-yy") =text(ad41,"mmm-yy") =text(ad40,"mmm-yy") =text(ad33,"mmm-yy") =text(ad31,"mmm-yy") =text(ad28,"mmm-yy") =text(ad26,"mmm-yy") =text(ad23,"mmm-yy"), respectively.

i need increase of numbers one. oct-13 oct-14. formatted general. have tried change numbers multiple times majority of times gets coded jan-00. file given me did not create, trying manipulate. don't think excel has greatest continuity date function.

in end took long way , did: 'mmm-yy thank all

you add 365 cell containing date (for example):

=text(ad42+365,"mmm-yy")  

or if instead accommodate leapyears, pull out year number , add 1 it:

=left(ad42,4)&(right(ad42,2)+1) 

Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -