Mac Excel 2011: find Items in one column that are not in another column

Posted by robert-jakobson on Super User See other posts from Super User or by robert-jakobson
Published on 2012-09-24T12:22:52Z Indexed on 2012/11/09 5:06 UTC
Read the original article Hit count: 232

Filed under:
|

Hi this is a repeat of the question: Excel: Find Items in one column that are not in another column

I have two columns in excel, and I want to find (preferably highlight) the items that are in column B, but not in column A.

What's the quickest way to do this?

However, the answer given below to in the above-menitoned thread no longer applies to Mac Excel 2011. E.g. there is no "name-a-range" option available on right click etc.. Therefore I am asking this again.

Select the list in column A Right-Click and select Name a Range... Enter "ColumnToSearch" Click cell C1 Enter this formula: =MATCH(B1,ColumnToSearch,0) Drag the formula down for all items in B If the formula fails to find a match, it will be marked #N/A, otherwise it will be a number.

If you'd like it to be TRUE for match and FALSE for no match, use this formula instead:

=IF(ISNA(MATCH(B1,ColumnToSearch,0)),FALSE,TRUE)

How should this answer be restated to apply to Mac Excel 2011?

© Super User or respective owner

Related posts about columns

Related posts about excel-2011