
Originally Posted by
Kevin Johnston
This should be easy - but I'm getting nowhere.
I have a text field called ISBN in a table. I want to query on the table, listing only those records in which the ISBN number starts out with a numeric digit. I thought that would be achievable with the following criteria in the ISBN column:
IsNumeric(Left([ISBN],1))
but the query comes back with NOTHING.
If I take the opposite tack to list just ISBN'S starting alpha -
Not IsNumeric(Left([ISBN],1))
I get back EVERYTHING (both alpha and numeric-beginning ISBN's).
What am I doing wrong?
Thanks!