ERROR REPORT

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top