Answers for "how to check is the value enterd is a number or text in vba"

VBA
1

how to check is the value enterd is a number or text in vba

If IsNumeric(Value) = True Then
 
    MsgBox "The value  is numeric"
 
Else
 
    MsgBox "The value is not numeric"
 
End If
Posted by: Guest on June-30-2020

Code answers related to "how to check is the value enterd is a number or text in vba"

Code answers related to "VBA"

Browse Popular Code Answers by Language