DotNetGnat
Programmer
Guys,
I have the a field with the following values
B234567
C123459
N456789
-- and so on
in my queries i used to do ISNUMERIC(myfield, 2, 5) = 0 to eliminate the above records...
but now i got a new record with value as B-2007
and i want to eliminate this too...but when i do ISNUMERIC(myfield, 2, 5)=0 it fails because '-2007' is considered numeric by the function and it returns 1.
any regex or other suggestions to eliminate this record...
thanks
-DNG
I have the a field with the following values
B234567
C123459
N456789
-- and so on
in my queries i used to do ISNUMERIC(myfield, 2, 5) = 0 to eliminate the above records...
but now i got a new record with value as B-2007
and i want to eliminate this too...but when i do ISNUMERIC(myfield, 2, 5)=0 it fails because '-2007' is considered numeric by the function and it returns 1.
any regex or other suggestions to eliminate this record...
thanks
-DNG