Matching Case

  • Thread starter Thread starter Dobs
  • Start date Start date
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
 
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.
 
Back
Top