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
Post a Comment