Formula for Repeating the Same Date Each Year

G

Guest

Hi,
The subject title says it all really...does anyone know how I can use a
formula in Excel to repeat the same date each year, allowing for leap years?

e.g. if the value in cell C1 is 28/2/07, I want the formula to automatically
put 28/2/08 in cell D1.

I know I could just use C1+365 but that wouldn't account for the extra day
in a leap year.

Any suggestions?
 
G

Guest

=DATE(YEAR(A1)+1,MONTH(A1),DAY(A1))

With your starting date in A1 enter this in A2 and drag right as far as you
want
 
G

Guest

sorry I meant put it in B1 and drag right

Mike said:
=DATE(YEAR(A1)+1,MONTH(A1),DAY(A1))

With your starting date in A1 enter this in A2 and drag right as far as you
want
 
G

Guest

Ignore the previous reply. Here is the correct formula

=EOMONTH(C1,12)

Required Analysis Toolpak Add Ins
 
G

Guest

Mike / 'Mama',

Thanks both for your responses, took me a moment to work out that EOMONTH
stands for end of month, so won't work for dates other than the last day of
the month, but both will be useful.

Dickie
 
D

Dana DeLouis

Hi. The usual question is if the date is 2/29/2008, what do you want 1 year
in the future to be?

Another option might be:
=EDATE(A1,12)
 

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