FormulaCraft

How to add years to a date in Excel and Google Sheets

Excel & Google Sheets
=DATE(YEAR(A2)+B2,MONTH(A2),DAY(A2))

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Enter your start date in A2 and the number of years to add in B2.
  2. 2In a result cell, enter =DATE(YEAR(A2)+B2,MONTH(A2),DAY(A2)).
  3. 3This reconstructs the date with the year incremented by B2, keeping the same month and day.
  4. 4Format the result cell as a date if it shows a number.
  5. 5To hardcode: =DATE(YEAR(A2)+5,MONTH(A2),DAY(A2)) adds exactly 5 years.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

Can I use EDATE to add years?

Yes. =EDATE(A2, B2*12) adds B2 years by converting years to months. Both approaches give identical results for most dates.

Why not just add 365 days to add a year?

Adding 365 is inaccurate for leap years. In a leap year the year has 366 days, so you would land one day short. DATE(YEAR+1,...) always lands on the exact same calendar date next year.

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: