Remove emails program

MySeoEmail

Regular Member
Joined
Mar 15, 2015
Messages
235
Reaction score
24
So I have a list of emails that email to in my excel sheet. But I do get bounces and unsubscribes for this list every now and then and need to remove those emails from my master list. Excel code wont do it. Everytime I try a VBA code it locks up excel.

Is there something else that can be built to do this?
 
Assuming the your long list is in column A and the short list is in column M, insert a column next to the names (column B) and insert this formula in B2 and copy down the length of the data in Column A:

=COUNTIF($M$1:$M$200,A2) Note the $ in the formula. This stops the range of cells being checked from changing while the formula is being copied down the length of the data.

Once the above has been done, a number will appear beside each entry in column A that is in column M.

Now select all the data for your first list and sort on column B so that all the values greater than 0 will be either sorted to the top of the list or the bottom of the list. Select all the data with values in column B that are greater than 0 and delete.

from answers_yahoo_com/question/index?qid=20120323111557AA5uoes
 
Back
Top