query like to search for upper case characters

  • Thread starter Thread starter monsey11
  • Start date Start date
M

monsey11

Hi All,

I'm looking to create a query to look for 4 uppercase letters in a row
like "*[A-Z][A-Z][A-Z][A-Z]*" ain't working.

I'm using office 2007 beta.

I appreciate your time.

Thank You
 
Hi All,

I'm looking to create a query to look for 4 uppercase letters in a row
like "*[A-Z][A-Z][A-Z][A-Z]*" ain't working.

I'm using office 2007 beta.

Access/Jet is not case sensitive and it is not easy to do case sensitive stuff.
The InStr() function can be used in some cases because it can be asked to
compare using the binary value rather than the text value. Not sure how that
could be adapted to your problem though. A custom VBA function could certainly
do the job, but might not be very efficient.
 

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

Back
Top