A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Insert a column between your columns A & B so that:
Column A1:A100 have your data and Column C1:C1000 have duplicate data.
In B1 write the following and drag down till B100:
=IF(ISERROR(VLOOKUP(A1,$C$1:$C$1000, 1, FALSE)),FALSE,TRUE )
or you may use:
=COUNTIF($C$1:$C$1000,A1)>0
or something like:
=NOT(ISERROR(MATCH(A1,$C$1:$C$1000,0)))
The ranges may be modified according to the size of your data.
Regards,
Vinay