lookup vaules which are not exist in a table

I

ifulao

I have column A, B, C. I want to know what are the values in column A that not exist in column B&C.
Anyone can help this?
 
C

Claus Busch

Hi,

Am Tue, 26 Nov 2013 06:39:42 -0800 (PST) schrieb [email protected]:
I have column A, B, C. I want to know what are the values in column A that not exist in column B&C.

in D1:
=IF(COUNTIF($B$1:$C$100,A1)=0,"no match","match")
and copy down


Regards
Claus B.
 
Top