Purpose: The IsDate function returns a value of true if the referenced variable is a date or time. Otherwise, it returns false.
Usage: IsDate(variable_name)
Where variable_name is the name of the variable you wish to test.
Returns: True if the referenced variable is a date or time; False otherwise.
Example
TestArray = Array(1,2,3)
TestInt = Int(1)
TestDate = "June 10, 2000"
IsDate(TestArray) returns False
IsDate(TestInt) returns False
IsDate(TestDate) returns True

