ERROR REPORT

T

THE_RAMONES

I have a column that has id that are alpha numeric and I need all those that
are not upper case or particular id into one table and all the rest in a
different table. Thanks for the help.
 
J

John Spencer

If you want to find those records where the field is not all upper case you
can use
StrComp(Ucase([YourField]),[YourField],1) <> 0

As far as not a particular Id, just add an Or

WHERE ID <> "123" OR StrComp(Ucase([ID]),[ID],1) <> 0
 
Top