Jak sprawdzić, czy wartość Enterd to liczba lub tekst w VBA

If IsNumeric(Value) = True Then
 
    MsgBox "The value  is numeric"
 
Else
 
    MsgBox "The value is not numeric"
 
End If
Arrogant Ant