Matching Case

D

Dobs

When in the query how set the cretia to match the case in
the table.

Example

Like "*SME*"

Not the lowercase "*sme*"

Cheers

Dobs
 
A

Allen Browne

JET is not case-sensitive, so you will need to use a VBA function in the
WHERE clause of your query, e.g.:
WHERE StrComp([MyField], "SME", 0) = 0

Note that StrComp() does not support wildcards.
 

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