![]() |
#3
|
|||
|
|||
![]()
OK, in column A of Sheet1 you have ID's. Where in Sheet2 you want to search for same id's? In some specific column, in some range of columns, or in any column?
Anyway, there is a formula which covers all possible cases: (assuming ID's on Sheet1 start from A2, insert the formula p.e. into cell B2 and copy it down) If you search fo ID's in Sheet2 in range of columns A:C =(COUNTIF(Sheet2!$A:$C;Sheet1!$A2)>0) If you search fo ID's in Sheet2 in column C =(COUNTIF(Sheet2!$C:$C;Sheet1!$A2)>0) Or if you define the tables on both sheets (you have to replace table and column names in formula with your own): in whole Table2 =(COUNTIF(Table2;Table1[@ID])>0) in column Column2 of table Table2 =(COUNTIF(Table2[Column2];Table1[@ID])>0) in columns Column1:Column3 of table Table2 =(COUNTIF(Table2[[Column1]:[Column3]];Table1[@ID])>0) |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
mlttkw | Excel Programming | 1 | 04-21-2016 08:32 AM |
HELP - comparing spreadsheets in excel 2010 | ali212006 | Excel | 1 | 04-03-2014 04:04 AM |
Comparing two excel worksheets | SaneMan | Excel | 1 | 06-27-2012 07:52 PM |
![]() |
ubns | Excel | 4 | 04-15-2012 10:48 PM |
Comparing Data - MS Excel | ramadevidokkuud | Excel | 1 | 05-19-2011 05:52 AM |