IsNumeric Function/text/sbasic/shared/03102700.xhpIsNumeric functionIsNumeric FunctionTests 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:BooleanParameters:Var: Any expression that you want to test.Example:Sub ExampleIsNumericDim vVar As Variant vVar = "ABC" Print IsNumeric(vVar) ' False vVar = "123" Print IsNumeric(vVar) ' TrueEnd Sub