IS_DATE
Last updated
Was this helpful?
IS_DATE takes a value and returns true if it can be parsed as a valid date or datetime, and false otherwise.
This is useful for validating date fields that may contain free-text input.
IS_DATE('2024-03-15')This returns true.
IS_DATE('not a date')This returns false.
Last updated
Was this helpful?
Was this helpful?
