I hope you all are healthy during these strange times. I do have a question in regards to creating a date in excel. I am trying to auto populate the date based on the current date. First the date pops up, followed by the month and year under that (i.e. 4/9/2020 will populate as APR-20 underneath that)... Finally from the formula I used to create the specific date and year format (MMM-YY) I need to create another date with the same format but for the following month (i.e. APR-20 is the current month and year, but now also need the formula to show me MAY-20 (format MMM-YY). This is the formula I used in excel to create the current month and year. Thank you guys so much!
=UPPER(TEXT(A1,"MMM")&"-"&TEXT(A1,YY))
A1 = the current date of 4/9/2020
Thank you again!
EOMONTH
to add a month to A1. – BigBen=UPPER(TEXT(A1, "Mmm-yy"))
. – BigBen