LibreOffice 7.2 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)
Bool
Expression: ඔබට හැරවීමට අවශ්යය ඕනෑම තන්තුමය හෝ සංඛ්යාත්මක ප්රකාශනයක්.
Sub ExampleIsNumeric
Dim vVar As Variant
vVar = "ABC"
print IsDate(sDateVar) REM Returns False
vVar = "123"
print IsDate(sDateVar) REM Returns False
End Sub