Help in Validation

sharonbl

Registered User.
Local time
Today, 02:20
Joined
Sep 7, 2000
Messages
17
I have a problem in some validation, that is I need to validate a string of 3 characters with no numeric values and I actually used the IsNumeric Function, however, it is true only when I enter only numbers and if I enter "12f", it returns false. How can I make it return True?
any other function to use other then IsNumeric Function?
Thanks
 
Are you just trying to make sure that there are only three characters in the string ?
 
Sharon
If you want to test if any one character in your string is a number, use Len to get the length of the string. Then loop through each character using Mid and test the return with IsNumeric. Help file has good stuff on Mid and Len
Good Luck
Chris
 
Thanks guys...
It works...
smile.gif
 

Users who are viewing this thread

Back
Top Bottom