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.
 

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

Similar Threads

Query and Null values 1
Turntable renovation 7
Help with formula 2
Sum If formula 3
outlook contacts uneditable 4
Impossible query? 3
formatting date for pivot table 2
Comparing 'matched' data 3

Back
Top