Table of Contents

IsTextDate(text_date)

Category: Date and Time function


Description

This function determines if the argument ("text_date") is a recognizable text date and returns TRUE if so.


Arguments

ArgumentTypeDescription
text_dateTextText value that represents a date.

Return value type: TRUE/FALSE


Examples

istextdate("2023-Nov-4")  //Returns TRUE
istextdate("11/4/2023")  //Returns TRUE (although in an ambiguous format)


See also