I have a column in sheet 1 that has all the members emails in a column (J2:J200).
Some members don’t want the newsletter, so I wanted to create a list in another “Unsubscribe” sheet (say B5:B25) with those who wish to opt out.
I really just need the relevant addresses in Sheet 1, column M to be blanked if there is a match in the “Unsubscribe” list.
I tried VLOOKUP, but keep getting #NA every now and then.
=IF(VLOOKUP(J2,Unsubscribe.B$5:B$25,1)=J2,"",J2)
I an totally confused with ISNA, and have been trying to understand it for hours. I just can’t get my head around it.
Can anyone tell me how to do this?
Thanks.
O.K.
After several hours, I came up with:
=IF(ISNA(VLOOKUP(J2,Unsubscribe.B$5:B$50,1)=J2),J2,IF(VLOOKUP(J2,Unsubscribe.B$5:B$50,1)=J2,"",J2))
Really?
There’s got to be a less messy way…
Fitch