Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a workbook with 2 spreadsheets, each with containing a list of part
numbers. On the second spreadsheet, I want to compare lists and identify duplicates from the first list, without changing the sorted order of either list. What is the easiest way to flag these duplicates on sheet 2 |
#2
![]() |
|||
|
|||
![]()
Use a helper column with a formula. Assuming key in column A on Sheet1 and
Sheet2, then use =IF(COUNTIF(Sheet1!A:A,A1)0,"Duplicate","") and copy down -- HTH RP (remove nothere from the email address if mailing direct) "genoq" wrote in message ... I have a workbook with 2 spreadsheets, each with containing a list of part numbers. On the second spreadsheet, I want to compare lists and identify duplicates from the first list, without changing the sorted order of either list. What is the easiest way to flag these duplicates on sheet 2 |
#3
![]() |
|||
|
|||
![]()
Thanks! =) Happy New Year!
"Bob Phillips" wrote: Use a helper column with a formula. Assuming key in column A on Sheet1 and Sheet2, then use =IF(COUNTIF(Sheet1!A:A,A1)0,"Duplicate","") and copy down -- HTH RP (remove nothere from the email address if mailing direct) "genoq" wrote in message ... I have a workbook with 2 spreadsheets, each with containing a list of part numbers. On the second spreadsheet, I want to compare lists and identify duplicates from the first list, without changing the sorted order of either list. What is the easiest way to flag these duplicates on sheet 2 |
#4
![]() |
|||
|
|||
![]()
A fast way of flagging common items (duplicates, as you call it) between
Sheet2 and Sheet1 would be: =--ISNUMBER(MATCH(A1,Sheet1!A:A,0)) 1 means duplicate, 0 not. genoq wrote: I have a workbook with 2 spreadsheets, each with containing a list of part numbers. On the second spreadsheet, I want to compare lists and identify duplicates from the first list, without changing the sorted order of either list. What is the easiest way to flag these duplicates on sheet 2 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I make a formula NOT change when the data range is moved? | Excel Discussion (Misc queries) | |||
Another question on how to find duplicate data | Excel Worksheet Functions | |||
Excel2K: Is it possible to use dynamic named ranges in custom data validation formula? | Excel Discussion (Misc queries) | |||
formula to determine the first column containing any data | Excel Worksheet Functions | |||
Formula to Extract Data from a Table | Excel Worksheet Functions |