Syntax
...
Construct date from year, month, and day of month.
Syntax
Syntax: DATE( Integer Year ; Integer Month ; Integer Day )
Returns: Date
Constraints: 1 <= Month <= 12; 1 <= Day <= 31
Semantics: This computes the date's serial number given Year, Month, and Day. Fractional values are truncated.
year (required) - An integer between 1583 and 9956, or 0 - 99representing the year.
month (required) - An integer between 1 and 12 representing month.
day (required) - An integer between 1 and 31 representing day of month.
Examples
Syntax | Result |
---|---|
report: =DATE(1969 ; 6 ; 21) | June 21, 1969 |
report: =DATE(1 ; 6 ; 21 ) | June 21, 2001 1 AD |
BYear = 1969 | June 21, 1969 |