Calculate Anniversary dates

Rupert Bennett

Active Member
Joined
Nov 20, 2002
Messages
271
Is there a formula I could write to calculate the anniversary dates based on a column of hire dates? For example, if the hire date is 2/12/02 in column "A", and this is year 2004, it will show the anniversary date to be 2/12/04 in column "B" and next year it will show 2/12/05. Any help will be greatly appreciated.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
how about this variation...

To show how many days until a anniversary(anniversary in A1):
=IF(N(NOW()-DATE(YEAR(NOW()),MONTH(A1,DAY(A1))))>=0,(TEXT(NOW()-(DATE(YEAR(NOE()),MONTH(A1,DAY(A1))),"#")+0),(TEXT(NOW()-DATE(YEAR(NOW()+1),MONTH(A1),DAY(A1))),"#"))*-1)
'courtesy of Phantom1975

*untested myself*
 
Upvote 0
=DATEVALUE(MONTH(B1)&"/"&DAY(B1)&"/"&YEAR(NOW())) then =DATEVALUE(MONTH(B1)&"/"&DAY(B1)&"/"&YEAR(NOW())+1)
 
Upvote 0
another variation, somewhat shorter, always giving this year...
Book7
ABCD
13/5/20033/5/2004
Sheet1


formula is:
=MONTH(A1)&"/"&DAY(A1)&"/"&YEAR(TODAY())

...as a deviation from Phantom1975's
 
Upvote 0
Thanks for the timely and great responses. My problem is solved, you guys are great. I really appreciate it.
Rupert
 
Upvote 0
my requirement was a small variation, to Zack Barresse solution. I needed to report the last completed anniversary date of an employee. I added an If condition to check this.

=IF(DATE(YEAR(TODAY()),MONTH(F4),DAY(F4))>TODAY(),DATE(YEAR(TODAY())-1,MONTH(F4),DAY(F4)),DATE(YEAR(TODAY()),MONTH(F4),DAY(F4)))
 
Upvote 0
You could also use this formula:

=EDATE(F4,DATEDIF(F4,TODAY(),"y")*12)

Barry Houdini: That is really good. You gave me a huge help; however I want the Next Anniversary date so added 366 days.
=EDATE(F4,DATEDIF(F4,TODAY()+366,"y")*12)

Now it works perfectly for any start date, and gives me next years Anniversary date.
Example Start date in cell F4 was 6/1/10. Today's date is 12/3/15. It returns Next Anniversary Date as 6/1/16.
Thank you for your help! ~ MMorey
 
Upvote 0
Hi, I hope this thread is still active. I am trying to create a spreadsheet which displays milestone anniversary dates at 1 year and in multiples of 5 (1, 5, 10, 15, etc.)

I would like to use an IF statement; something like IF D5 equals 5, then display the 5-year anniversary date in E5 by adding the number of years in D5 to the the hire date displayed in C5.

If anyone could help me with this, I would greatly appreciate it. Thanks!
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,981
Members
448,538
Latest member
alex78

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top