
Originally Posted by
wondering2
I have a list of values in rows and a list of values in columns. I would to return a 1 if any value in the row matches any value in the column and a zero if otherwise. I can't figure out how to modify the MATCH function to do this, it only allows one value. I would think it is theoretically possible to use if functions but the rows and columns are about 30 long so it might get pretty cluttered. Thanks
EX:
1 2 3 2 1
2 1 4 5 3
1 2| 1 1 0 1 1
2 5| 1 1 0 1 0
3 4| 0 0 1 0 1
Sorry that didn't get formatted correctly. Pretend like the lines are the boundary. Everything above and to the left is stuff already there. Everything else is dependent on the match statement i would like to tmake
Thanks
Bookmarks