EXCEL LOGICAL FORMULA, PLEASE HELP!

J

Jan

In one column I have like 2000 email addresses my potential clients
and some of them do not want to receive any emails at all. So I have
about 10 email address that I can not send to. Can someone please help
me with a formula that will eliminate all of those restricted (10
emails) addresses from that main column?
Thank you.
Jan
 
B

Bernard Liengme

1) delete them
2) move them to another column
3) use a helper column with 0, 1 (0 meaning do not email); use this to
filter on
4) change @ to % so the email goes no where
.....
best wishes
 
B

bj

if your main list is in column A and you have a sub list for the ones you
want to remove in column C (C1:C10 for example)
in B1 enter
=if(iserror(vlookup(A1,C$1:C$10,1,0)),"",1)
copy down to the end of your data
select column B
use <data><Filter><auto filter>
select 1 from the autofilter arrows
Select all the cells in column A next to a 1
delete or move as you wish.
 
J

Jan

1) delete them
2) move them to another column
3) use a helper column with 0, 1 (0 meaning do not email); use this to
filter on
4) change @ to % so the email goes no where
....
best wishes

Thank you guys, you've helped me a lot.
Jan
 
Top