yet another isNumeric question
Apparently letters that can evaluate as numbers pass VB's isNumeric function. Such as "e"
Are there any other letter-based expressions that pass isNumeric? Is there a function that genuinely checks to make sure the data is composed of digits and digits only? Or does that have to be customized...
Re: yet another isNumeric question
Quote:
Originally posted by bitsy
Apparently letters that can evaluate as numbers pass VB's isNumeric function. Such as "e"
What do you mean?
This produces "I'm not"
VB Code:
If IsNumeric("e") Then
MsgBox "I'm Numeric"
Else
MsgBox "I'm not"
End If