Day() |
Working with Formulas > Functions Used in Formulas > Date/Time Functions > Day()
DAY() returns the numeric day of the month for a given date expression. If a null date is specified, the function returns zero.
Function Format
DAY(date)
Return Value
DAY() returns an integer
Examples
DAY(DATE("11/22/2007")) = 22
DAY(DATE(2007, 12, 25)) = 25 |