To get future date

Muthukrishnan V

Active Member
Joined
May 29, 2008
Messages
294
Office Version
  1. 365
Platform
  1. Windows
Excel 2007.

Col A11 to A40 contain names.
Col B11 to B40 contain date of birth (dd-mm-yyyy)


In Col A1 I enter a date, say 10-08-2018 (dd-mm-yyyy) or =today().



My request: Col C11 to C40 to show next occurrence of birthday
anniversary based on the date entered in A1.

To illustrate, if B11 is 13-01-1949, next birth anniversary is 13-01-2019. (next occurrence based on A1)
C11 to show 13-01-2019. Request formula.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Here is one way.

Place this formula in C11 and copy down for all rows:
Code:
=IF(DATE(YEAR(TODAY()),MONTH(B11),DAY(B11))>$A$1,DATE(YEAR(TODAY()),MONTH(B11),DAY(B11)),DATE(YEAR(TODAY())+1,MONTH(B11),DAY(B11)))
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,314
Members
452,634
Latest member
cpostell

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