How do I exclude records based on first two characters in cell

  • Thread starter Thread starter Wheelz
  • Start date Start date
W

Wheelz

I need to modify an ACCESS query to exclude records if the first two
characters in a certain field begin with "AA". I should know how to
specify this simple thing but I don't. I would appreciate your
feedback.

Ken
 
I need to modify an ACCESS query to exclude records if the first two
characters in a certain field begin with "AA". I should know how to
specify this simple thing but I don't. I would appreciate your
feedback.

Ken
As criteria on that column, write:
Not Like "AA*"
 
Coming back to the well once more:

How might I specify that I want to exclude ant record that has CDMA
anywhere in a string in a spefic column?
 
not like "*CDMA*"


--
Rick B



Wheelz said:
Coming back to the well once more:

How might I specify that I want to exclude ant record that has CDMA
anywhere in a string in a spefic column?
 

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