In Excel I have two columns, one with about 3000 rows and one with about 100. I need to find all of the matches between the two columns and put them in a separate column. I have to do this every morning so if there is a way to do so, I'd like to make it as automated as possible.
|
feedback
|
migrated from stackoverflow.com Sep 22 '11 at 12:29
This question came from our site for professional and enthusiast programmers.
|
If you are doing this every morning that you might want to look at my Duplicate Master addin , http://www.experts-exchange.com/A_2123.html for a readily applied automated solution
| |||||
feedback
|
|
List 1 A1:A1000 List 2 B1:100 in column 3, =COUNTIF($A$1:$A$1000,B1)>0, and copy down to row 100. All the TRUE's represent #'s that are in both lists. You can also do something similar with VLOOKUP. | |||
|
feedback
|