IS_DATE returns true if the given string is a valid ISO8601 format date and can be used in all the date and time functions provided by Atfinity
IS_DATE
IS_DATE(NOW())
This would return true as now() returns a valid date.
now()
IS_DATE("18")
would return false, since 18 is not a valid date string.
18
Last updated 3 years ago
Was this helpful?