Cross matching .

R

RNO

A B C
1 30101 30102 ok
2 30101 30103 ok
3 30101 30104 ok
4 30102 30101 ok
5 30203 30101 not ok
6 30104 30101 ok

please help me for Cross matching A with B Vice versa by EXCEL function.
 
P

Pete_UK

I think you want something like this in C1:

=IF(ISNA(MATCH(A1,B:B,0)),"not ok","ok")

and then copy down. You could also put this in D1:

=IF(ISNA(MATCH(B1,A:A,0)),"not ok","ok")

and copy down to look for uniques in column B.

Hope this helps.

Pete
 
R

Rick Rothstein

You need to provide more information. What are you "matching"? The only
thing I can see about Row 5 that would make it "not ok" is that the 3rd
digits are different. What is the exact rule that make a "match" either "ok"
or "not ok"?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top