Matching a sampling # to it's row #number

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

here is my data:
col A col B col C col D
store# row sampling #
3 1 210
5 2 5
7 3 11
10 4 510
12 5 X 42

I want to be able to make an "X" in column C if the row # in column B is
also located in column D in the case of store # 12 above, otherwise have the
cell in C remain blank.

thank you in advance! jane
 
In C2 place the formula
=IF(ISNA(VLOOKUP(B2,$D$2:$D$100,1,0)),"","X")
and copy down.

Hope this helps
Rowan
 

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

Back
Top