Reputation: 802
I've two columns A
and B
that contain lists of usernames,
column B
has some usernames not in column A
How can I find them and store them in column C
?
Upvotes: 0
Views: 5775
Reputation: 3781
Use this formula for cell C1:
=IF(ISERROR(MATCH(B1,$A$1:$A$5,0)),B1,"")
Drag it down to the last row of the list in column B.
Upvotes: 2