Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

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.

share|improve this answer
game me error Returns the logical value TRUE if value refers to any error value, such as #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!; otherwise, it returns FALSE. – Mohamed Ahmed Nov 10 '12 at 21:43
works fine my bad , thanks alot – Mohamed Ahmed Nov 11 '12 at 7:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.