Date

P

PL

I want to use the number format mmm-yy

For a row I want


Jan- 1998 Apr-1998 Jul-1998 Oct-1998 Jan-1999 Apr-1999 ......

In other words, I want to repeat the same months for every year, how do I do
so without doing for each cell indiviually?

Thanks
 
J

Jacob Skaria

1. Enter a date in A1
2. Select Row 1. Right click>FormatCells>Custom mmm-yy
3. In B1 enter the below formula and copy that to the cells right...
=DATE(YEAR(A1)+1,MONTH(A1),1)


If this post helps click Yes
 
F

Fred Smith

For quarterly dates, use the following formula:
=DATE(YEAR(A1),MONTH(A1)+3,1)

Regards
Fred
 

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

Top