Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have two columns of data in seperate spreadsheets. I want to compare the
data in one column with data in the other. If there is a match I want it noted in some way. If thre is no match I want that noted as well. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can use an adjacent column of formulas:
=isnumber(match(a1,sheet2!a:a,0)) If you see True, there's a match. False means there isn't. Docgero wrote: I have two columns of data in seperate spreadsheets. I want to compare the data in one column with data in the other. If there is a match I want it noted in some way. If thre is no match I want that noted as well. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Dave. I did not get the desired results expected.
Perhaps I didn't explain properly what I was trying to accomplish. As mentioned I have two spreadsheets. I have the same type data (item numbers) in columns in each sheet. I want to look at the universe of items numbers in column 2 sheet 1 and see if there is a match on sheet 2 column 2. This will be an item for item check. "Dave Peterson" wrote: You can use an adjacent column of formulas: =isnumber(match(a1,sheet2!a:a,0)) If you see True, there's a match. False means there isn't. Docgero wrote: I have two columns of data in seperate spreadsheets. I want to compare the data in one column with data in the other. If there is a match I want it noted in some way. If thre is no match I want that noted as well. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dave,
I altered your formula slightly and it works. Here is what I did. =ISNUMBER(MATCH(B5:B1170,'[Book Order - ALPHA.xls]Master List'!$A$2:$A$720,0)) works perfectly. Thanks again. Docgeo "Dave Peterson" wrote: You can use an adjacent column of formulas: =isnumber(match(a1,sheet2!a:a,0)) If you see True, there's a match. False means there isn't. Docgero wrote: I have two columns of data in seperate spreadsheets. I want to compare the data in one column with data in the other. If there is a match I want it noted in some way. If thre is no match I want that noted as well. -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I was too lazy to point at another workbook. Glad you got it working.
But I would have guessed you wanted this version: =ISNUMBER(MATCH(B5,'[Book Order - ALPHA.xls]Master List'!$A$2:$A$720,0)) And drag down Docgero wrote: Dave, I altered your formula slightly and it works. Here is what I did. =ISNUMBER(MATCH(B5:B1170,'[Book Order - ALPHA.xls]Master List'!$A$2:$A$720,0)) works perfectly. Thanks again. Docgeo "Dave Peterson" wrote: You can use an adjacent column of formulas: =isnumber(match(a1,sheet2!a:a,0)) If you see True, there's a match. False means there isn't. Docgero wrote: I have two columns of data in seperate spreadsheets. I want to compare the data in one column with data in the other. If there is a match I want it noted in some way. If thre is no match I want that noted as well. -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to compare two columns | Excel Discussion (Misc queries) | |||
Formula to compare columns | Excel Discussion (Misc queries) | |||
Formula to compare two lists and separate non-recurring items? | Excel Worksheet Functions | |||
Compare 2 columns, and create a list of items that are in both lists | Excel Worksheet Functions | |||
Formula needed to compare columns | New Users to Excel |