Comment vérifier est la valeur enterd est un nombre ou un texte dans VBA

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