HOW TO... search Wildcards in a query?

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

Guest

Hi TWIMC

I'm trying to run a query that does not select records where the DEAL_ID
field contains either "*" or "***". I've used Not Like "[*]" which removes
the records where the deal ID has one asterisks but if I try Not Like "[***]"
the other records still remain. So the question is, what criteria do I use to
deselect records that have multiple instances of wildcards?. And no I can't
change the underlining data because that is from a completely different data
system.

TIA
KM
 
Dear Kevin:

There are literal asterisks and wild card asterisks. The literal one is
inside the square brackets.

To search for anything containing X you would use "*X*"

To search for anything containing an asterisk, use "*[*]*"

Tom Ellison
 

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