To get future date

Muthukrishnan V

Active Member
Joined
May 29, 2008
Messages
297
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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,224,827
Messages
6,181,197
Members
453,022
Latest member
RobertV1609

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