IsDate Function [Runtime]/text/sbasic/shared/03102300.xhpSun Microsystems, Inc.converted from old format - fpeIsDate functionIsDate Function [Runtime]Tests if a numeric or string expression can be converted to a Date variable.Syntax:IsDate (Expression)Return value:BoolParameters:Expression: Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns True, otherwise the function returns False.Example:Sub ExampleIsDateDim sDateVar as StringsDateVar = "12.12.1997"print IsDate(sDateVar) REM Returns TruesDateVar = "12121997"print IsDate(sDateVar) REM Returns Falseend sub