DATE

Returns the sequential serial number that represents a particular date.

Syntax

DATE(year,month,day)

Year   The year argument can be one to four digits.

Month   is a number representing the month of the year. If month is greater than 12, month adds that number of months to the first month in the year specified. For example,

DATE(2008,14,2)
returns the serial number representing February 2, 2009.

Day   is a number representing the day of the month. If day is greater than the number of days in the month specified, day adds that number of days to the first day in the month. For example,

DATE(2008,1,35)
returns the serial number representing February 4, 2008.

Remarks

Example

YearMonthDayFormula Description (Result)
200811=DATE([Year],[Month],[Day]) Serial date for the date (1/1/2008 or 39448)