LibreOffice 25.8 Help
Tests if an expression is a number. If the expression is a number, the function returns True, otherwise the function returns False.
IsNumeric (Var)
Boolean
Expression: ඔබට හැරවීමට අවශ්යය ඕනෑම තන්තුමය හෝ සංඛ්යාත්මක ප්රකාශනයක්.
Sub ExampleIsNumeric
Dim vVar As Variant
vVar = "ABC"
Print IsNumeric(vVar) ' False
vVar = "123"
Print IsNumeric(vVar) ' True
End Sub