• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Vlookup/If Problem

skidragon02

New Member
I am trying to reach the 2 following results:


If a value appears in this table and in the other table, remove it.


If a value appears in this table, but not in the other table, don't remove it.


How should I write these formulas?
 
First, use a formula to flag via:

=ISNUMBER(MATCH(MyValue,OtherList,0))

Then, filter this column for 'TRUE' and delete all those values.
 
Back
Top