Category: Date and Time function
This function returns TRUE if date falls on a weekend day (Saturday or Sunday). Otherwise, it returns FALSE.
Argument | Type | Description |
---|---|---|
date | Date or Number (date serial) | An expression representing a date. The date to test whether it falls on a weekend day, or not. |
Return value type: Boolean (TRUE/FALSE)
The date argument can take any value or expression that evaluates to a date serial value. Examples include:
isweekend(#2019-05-16) //Returns FALSE (Thursday)
isweekend(#2019-05-19) //Returns TRUE (Sunday)