Multiple wildcard criteria

C

cru

I am looking to find ways to use wildcard to find a first character (L or E)
and a fifth character (U)...Is this possible?

i.e. I have batch ID: L208U70AA1, need to search by first character (L) then
fifth character (U).

Any assistance is appreciated. Thanks.
 
M

Marshall Barton

cru said:
I am looking to find ways to use wildcard to find a first character (L or E)
and a fifth character (U)...Is this possible?

i.e. I have batch ID: L208U70AA1, need to search by first character (L) then
fifth character (U).


Try setting the field's criteria to:

Like "L???U*"

or, if you need to search for L or E as the first character:

Like "[LE]???U*"
 
C

cru

Hi Marsh,

This worked great...thank you so much.

CRU

Marshall Barton said:
cru said:
I am looking to find ways to use wildcard to find a first character (L or E)
and a fifth character (U)...Is this possible?

i.e. I have batch ID: L208U70AA1, need to search by first character (L) then
fifth character (U).


Try setting the field's criteria to:

Like "L???U*"

or, if you need to search for L or E as the first character:

Like "[LE]???U*"
 

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