Advance Filter Criteria

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Help! I am trying to use the Advance Filter to eliminate rows from a list.
Using this example:

Column A B C
Yes One Phoenix
No One Tucson
Yes Two Phoenix
No One Phoenix
Yes Two Tucson

I need two criterias. (1) if A is = to Yes OR (2) B = to One AND C = Phoenix

The results would be:

Column A B C
Yes One Phoenix
Yes Two Phoenix
No One Phoenix
Yes Two Tucson

Any help will be greatly appreciated.

Jordan
 
How about just using a helper column of formulas?

=if(or(a2="yes",and(b2="one",c2="phoenix")),"keepit","deleteit")

Drag down, apply data|Filter|autofilter and then delete.
 
Hi Jordan,

For Advanced Filter you could use:

=OR(A2="Yes",AND(B2="One",C2="Phoenix"))

CHORDially,
Art Farrell
 

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