IsNumeric Function
Tests if an expression is a number. If the expression is a number, the function returns True, otherwise the function returns False.
Sintakse:
IsNumeric (Var)
AtgrieztÄ vÄrtÄ«ba:
Boolean
Parametri:
Izteiksme1, Izteiksme2: jebkuras izteiksmes, kuras jÅ«s vÄlaties salÄ«dzinÄt.
PiemÄrs:
Sub ExampleIsNumeric
Dim vVar As Variant
vVar = "ABC"
Print IsNumeric(vVar) ' False
vVar = "123"
Print IsNumeric(vVar) ' True
End Sub