WorksheetFunction.EDate(Object, Object) Method

Definition

Returns the serial number that represents the date that is the indicated number of months before or after a specified date (the start_date). Use EDATE to calculate maturity dates or due dates that fall on the same day of the month as the date of issue.

public:
 double EDate(System::Object ^ Arg1, System::Object ^ Arg2);
public double EDate (object Arg1, object Arg2);
Public Function EDate (Arg1 As Object, Arg2 As Object) As Double

Parameters

Arg1
Object

Start_date - a date that represents the start date. Dates should be entered by using the DATE function, or as results of other formulas or functions. For example, use DATE(2008,5,23) for the 23rd day of May, 2008. Problems can occur if dates are entered as text.

Arg2
Object

Months - the number of months before or after start_date. A positive value for months yields a future date; a negative value yields a past date.

Returns

Remarks

Microsoft Excel stores dates as sequential serial numbers so they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after January 1, 1900. Microsoft Excel for the Macintosh uses a different date system as its default.

If start_date is not a valid date, EDate returns the #VALUE! error value.

If months is not an integer, it is truncated.

Applies to