Excel EDATE Function

Related Function:
EOMONTH

Function Description

The Excel Edate function returns a date that is a specified number of months before or after a supplied start date.

The syntax of function is:

EDATE( start_date, months )

Where the arguments are as follows:

start_date - The initial date, from which to count the number of months.
months - The number of months to add to (or subtract from) the start_date.

Date Arguments

Note that Microsoft advises that you do not type dates directly into functions, as Excel interprets text representations of dates differently, depending on the date interpretation settings on your computer.

Therefore the start_date argument for the Edate function should be input as either:

or

Edate Function Examples

Column B of the following spreadsheet shows six examples of the Excel Edate function.

 Formulas:
  A B
1 31-Dec-2015 =EDATE( A1, 1 )
2 31-Dec-2015 =EDATE( A2, -1 )
3 31-Dec-2015 =EDATE( A3, 2 )
4 28-Feb-2016 =EDATE( A4, 12 )
5 29-Feb-2016 =EDATE( A5, 12 )
6 29-Feb-2016 =EDATE( A5, -12 )
 Results:
  A B
1 31-Dec-2015 31-Jan-2016
2 31-Dec-2015 30-Nov-2015
3 31-Dec-2015 29-Feb-2016
4 28-Feb-2016 28-Feb-2017
5 29-Feb-2016 28-Feb-2017
6 29-Feb-2016 28-Feb-2015

The above examples illustrate that:

Note also that, as recommended by Microsoft, in all of the above calls to the Edate function, the start_date has been supplied as a cell reference.


For further examples of the Excel Edate function, see the Microsoft Office website.


Edate Function Errors

If you get an error from the Excel Edate function, this is likely to be one of the following:

Common Errors
#NUM! -

Occurs if the date resulting from the calculation is not valid.

(E.g. Using the function to calculate the date that is one month before 01/01/1900 would return the #NUM! error as Excel cannot handle dates prior to 01/01/1900).
#VALUE! -

Occurs if either:

  • The supplied start_date is not a valid date
or
  • The supplied months argument is non-numeric.