📌  相关文章
📜  如何检查输入的值是vba代码示例中的数字还是文本

📅  最后修改于: 2022-03-11 14:51:54.382000             🧑  作者: Mango

代码示例1
If IsNumeric(Value) = True Then
 
    MsgBox "The value  is numeric"
 
Else
 
    MsgBox "The value is not numeric"
 
End If