Filtering for fields with character

L

Louis

How can I filter for results that contain the charcter "(" ?

For example if my fields are:

A(2001)
B(2004)
C
D(2055)
E(2006)

I would like to display results that contain parentheses brackets.

I try filtering using the wildcard *(* but it does not work.
 
J

John W. Vinson

How can I filter for results that contain the charcter "(" ?

For example if my fields are:

A(2001)
B(2004)
C
D(2055)
E(2006)

I would like to display results that contain parentheses brackets.

I try filtering using the wildcard *(* but it does not work.

Try

LIKE "*(*"

Wildcards only work with the LIKE operator; if you just put

*(*

on the criteria line it will search for that exact sequence of three
characters.

If you want to search *for a wildcard character* without having it treated as
a wildcard, enclose it in square brackets:

LIKE "*[#]*"

will search for the # character, rather than treating it as a numeric digit
wildcard.
 

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

Top