WorksheetFunction.EoMonth Method (Excel)

Returns the serial number for the last day of the month that is the indicated number of months before or after start_date. Use EOMONTH to calculate maturity dates or due dates that fall on the last day of the month.

Syntax

expression .EoMonth(Arg1, Arg2)

expression A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

Required

Variant

Start_date - a date that represents the starting 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

Required

Variant

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.

Return Value

Double

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.

    Note

    Visual Basic for Applications (VBA) calculates serial dates differently than Excel. In VBA, serial number 1 is December 31, 1899, rather than January 1, 1900.

  • If start_date is not a valid date, EOMONTH returns the #NUM! error value.

  • If start_date plus months yields an invalid date, EOMONTH returns the #NUM! error value.

See Also

Concepts

WorksheetFunction Object

WorksheetFunction Object Members