IsNumeric Function [Runtime]/text/sbasic/shared/03102700.xhpSun Microsystems, Inc.converted from old format - fpeIsNumeric functionIsNumeric Function [Runtime]Tests if an expression is a number. If the expression is a number, the function returns True, otherwise the function returns False.Syntax:IsNumeric (Var)Return value:BoolParameters:Var: Any expression that you want to test.Example:Sub ExampleIsNumericDim vVar as variantvVar = "ABC"Print IsNumeric(vVar) REM Returns FalsevVar = "123"Print IsNumeric(vVar) REM Returns Trueend sub