View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default Comparing one cell to every cell in another column

In C1:

=if(isnumber(match(a1,b:b,0)),"Match","NoMatch")

and drag down.




ExcelAlex wrote:

I have a workbook that imports data from two separate text files. I want
to find any matches between the two sets of data, but they will not be
in the same order.

IF
Cell in Column 1 (from data import 1) = Any Cell in Column 2 (from data
import 2)
THEN
Column 3 = "MATCH"

I'd like to do this for every cell in column 1. The lists can up to
1000 rows long.

If anyone out there can help me, I'd greatly appreciate it!

THANKS!
Alex

--
ExcelAlex
------------------------------------------------------------------------
ExcelAlex's Profile: http://www.excelforum.com/member.php...o&userid=15554
View this thread: http://www.excelforum.com/showthread...hreadid=271165


--

Dave Peterson