Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • What-If Analysis: Scenarios and Goal Seek in Excel
  • Working With Tables in Excel
  • Managing Conditional Formatting Rules in Excel
  • Error Bars in Excel
  • How To Load Analysis ToolPak in Excel

References

  • Get nth match with INDEX / MATCH in Excel
  • Convert text string to valid reference in Excel using Indirect function
  • How to retrieve first match between two ranges in Excel
  • Find Closest Match in Excel Using INDEX, MATCH, ABS and MIN functions
  • Count rows with at least n matching values

Data Validations

  • How To Create Drop-down List in Excel
  • Excel Data validation must not contain
  • Excel Data validation date in specific year
  • Excel Data validation whole percentage only
  • Excel Data validation with conditional list

Add years to date in Excel

by

If you need to add years to date in Excel then this tutorials is for you. See the example below .

To add a given number of years to a date, you can use a formula based on the DATE function, with help from the YEAR, MONTH, and DAY functions.

Formula

=DATE(YEAR(date)+years,MONTH(date),DAY(date))

Note: if you need to add an “even” multiple of 12 months to a date (i.e. 12, 24, 36, 48, etc) you can use a much simpler formula based on the EDATE function.

Explanation

In the example shown, the formula in D5 is:

=DATE(YEAR(B5)+C5,MONTH(B5),DAY(B5))

How this formula works

Working from the inside out, the YEAR, MONTH, and DAY functions extract those respective date components:

=YEAR(B5) // 1960
=MONTH(B5) // 3
=DAY(B5) // 8

At the outer level, the DATE function simply reassembles the component values back into a valid Excel date. To add years to the date, we just need to add the value in C5 to the year component prior to reassembly:

=DATE(YEAR(B5)+C5,MONTH(B5),DAY(B5))

The formula is then solved like this:

=DATE(1960+10,3,8)
=DATE(1970,3,8)
=8-Mar-1970

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • How to use Excel XOR Function
  • How to return blank in place of #DIV/0! error in Excel
  • How to use Excel TRUE Function
  • Extract multiple matches into separate rows in Excel
  • Check multiple cells are equal in Excel

Date Time

  • Get first Monday before any date in Excel
  • Calculate date overlap in days in Excel
  • How to get Holiday Date from Year in Excel
  • Get last day of month in Excel
  • How to calculate future date say 6 months ahead in Excel

Grouping

  • How to randomly assign people to groups in Excel
  • Group numbers at uneven intervals in Excel
  • Running count group by n size in Excel
  • Group times into unequal buckets in Excel
  • If cell contains one of many things in Excel

General

  • List sheet names with formula in Excel
  • Check if multiple cells have same value with case sensitive in Excel
  • How to set or clear a print area in Excel Worksheet
  • Sum by group in Excel
  • Print Excel Sheet In Landscape Or Portrait
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning