First, thank you to all those that have been helping me out with my project. I believe this is my last question, and it's difficult to explain.
I have a list of emails in a column on sheet data, I have another list of emails in a column on sheet1. I'd like to create a fresh list of emails from data excluding any that match the list in sheet3. I sure hope someone understands that
The master list of email addresses
Those emails to exclude
This is what the result should look like, although I had to do it manually.
Thank you!
I have a list of emails in a column on sheet data, I have another list of emails in a column on sheet1. I'd like to create a fresh list of emails from data excluding any that match the list in sheet3. I sure hope someone understands that
The master list of email addresses
Book1.xlsx | |||
---|---|---|---|
A | |||
1 | |||
2 | |||
3 | |||
4 | email1 | ||
5 | email2 | ||
6 | email3 | ||
7 | email4 | ||
8 | email5 | ||
9 | email6 | ||
10 | email7 | ||
11 | email8 | ||
12 | email9 | ||
13 | email10 | ||
Sheet2 |
Those emails to exclude
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2:A11 | A2 | =IFERROR(INDEX(Sheet2!$A$4:$A$9999,AGGREGATE(15,6,ROW(Sheet2!$A$4:$A$9999)-ROW(Sheet2!$A$3)/(Sheet2!$B$4:$B$9999="Yes"),ROW()-ROW($A$1))),"") |
This is what the result should look like, although I had to do it manually.
Book1.xlsx | |||
---|---|---|---|
A | |||
1 | Email List | ||
2 | email1 | ||
3 | email3 | ||
4 | email5 | ||
5 | email7 | ||
6 | email8 | ||
7 | email9 | ||
8 | email10 | ||
Sheet3 |
Thank you!