So überprüfen Sie, ob der Wert eine Nummer oder einen Text in VBA ist.

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