- 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 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)
No comments:
Post a Comment