Advanced Filter Case Sensitive

J

Joseph S Johnson

Hi, Is there any way to make an advanced filter case
sensitive? For example, I want to type DOG in the criteria
range and run the filter and only pull records that are
DOG, not dog. Thanks very much.
 
D

Debra Dalgleish

In the criteria area, leave the heading cell blank
In the cell below, enter a formula that refers to the first row of data.
For example:

=EXACT(D2,"DOG")
 
J

Joseph S Johnson

Thank you very much. You helped me a little. I was a bit
vague when I first asked my question. Your technique
works, but I need to be able to pull for multiple
criteria...in other words, not just "PET = DOG", but
also "State = NJ" I can use your method on just one field,
but not several fields. Thanks though.
 
D

Debra Dalgleish

Add more columns to the criteria, and write formulas for the additional
fields. Put all the criteria on the same row, if all conditions must be
met (e.g. Pet=DOG AND State=NJ), or on different rows if only one of the
conditions must be met (e.g. Pet=DOG OR State=NJ).
 
P

Peo Sjoblom

=AND(EXACT(D2,"DOG"),EXACT(E2,"NJ"))



=OR(EXACT(A5,"DOG"),EXACT(B5,"NJ"))

--


For everyone's benefit keep the discussion in the newsgroup.

Regards,

Peo Sjoblom
 

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