IS_DATE()
Prototype
IS_DATE(date, [format])
Verifies if a string has date format (yyyy-mm-dd) and is a valid date (for example 2019-02-30 is not valid because February does not have 30 days)
Partial dates are allowed depending on the format
value. See examples below
Input parameters
Parameters | Type | Default | Required | Description |
---|---|---|---|---|
|
| Yes | Date to verify | |
| "D" | No | Units in which
If no format is specified, then "D" is the default value |
Return value
Type | Description |
---|---|
|
Execution
Always. Calculated on-the-fly whenever an ITEM of a FORM is changed (by means of form_set_answer(), or when the FORM is opened
Examples
Formula | Description |
---|---|
| No UNIT specified, so "D" is assumed. Result = 1 |
| Invalid date because day 34 is not possible. Result = 0 |
| Required date with at least month part. Result = 1 |
| Required date with at least month part. Result = 0 |