Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi patman,
try these for 10,000 rows of data in columns A and B starting in row 2... 1. Common values... =IF(COUNTIF($A$2:$A$10001,B2)0,B2,"") 2. Values that appear in column 1 but not in column 2... =IF(B2="","",IF(COUNTIF($B$2:$B$10001,A2)=0,A2,"") ) 3. Values that appear in column 2 but not in column 1... =IF(A2="","",IF(COUNTIF($A$2:$A$10001,B2)=0,B2,"") ) Fill down to suit and adjust 10001 if data is deeper. Ken Johnson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Inputting data to one worksheet for it effect another | Excel Discussion (Misc queries) | |||
Find data in columns, then place in rows | Excel Worksheet Functions | |||
how do you prevent data from changing values when sorting linked . | Excel Discussion (Misc queries) | |||
Finding common data in multiple columns and rows in Excel | Excel Worksheet Functions | |||
Comparing data in two columns and highlighting the data | Excel Worksheet Functions |