Need 1 year and 2 year projection dates

acohn

New Member
Joined
Sep 7, 2010
Messages
2
I'm tracking when staff traings will be due in the future and need the formula for 1 year from a specific date and 2 years from a specific date - I would like the due date to appear when I type in the current training date.

thanks for your assistance:)
Abby
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I'm tracking when staff traings will be due in the future and need the formula for 1 year from a specific date and 2 years from a specific date - I would like the due date to appear when I type in the current training date.

thanks for your assistance:)
Abby
Try these...

A1 = some date

For 1 year:

=EDATE(A1,12)

For 2 years:

=EDATE(A1,24)

Format as Date

Note that the EDATE function requires the Analysis ToolPak
add-in be installed if you're using a version of Excel prior to
Excel 2007. If you enter the formula and get a #NAME?
error look in Excel help for the EDATE function. It'll tell you
how to fix the problem.
 
Upvote 0
Or if you don't want to use the Tool Pak
Code:
=DATE(YEAR(A1)+1,MONTH(A1),DAY(A1))
If the date in A1 just happens to be a leap day then what date should be returned for the next year?

The EDATE and DATE formulas return different results.

If A1 = 2/29/2008 there is no 2/29/2009. The EDATE formula will return 2/28/2009 and the DATE formula will return 3/1/2009.
 
Upvote 0

Forum statistics

Threads
1,224,576
Messages
6,179,639
Members
452,935
Latest member
mm1t1

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