Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am pulling data into a LARGE spreadsheet and that data is coming from 4
separate sites. A product might well be found in sites A, C and D. Others might be found only in A. A sort would obviously group the duplicates, but a sort is not practical. There are over 45,000 rows of data in the spreadsheet and finding dupes "by-eye" would drive me to madness. Is there a way to have Excel "look" down column A and find any item name (alpha-numeric format) that is repeated. Is there a way to segregate or highlight the duplicates; or to produce a list of the duplicates? The idea thing would be if it could copy the duplicating records to a separate worksheet. I'll take what I can get.... Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See here for some ideas: http://www.cpearson.com/excel/duplicat.htm
Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "ConfusedNHouston" wrote: I am pulling data into a LARGE spreadsheet and that data is coming from 4 separate sites. A product might well be found in sites A, C and D. Others might be found only in A. A sort would obviously group the duplicates, but a sort is not practical. There are over 45,000 rows of data in the spreadsheet and finding dupes "by-eye" would drive me to madness. Is there a way to have Excel "look" down column A and find any item name (alpha-numeric format) that is repeated. Is there a way to segregate or highlight the duplicates; or to produce a list of the duplicates? The idea thing would be if it could copy the duplicating records to a separate worksheet. I'll take what I can get.... Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You need to write a macro
First Sort Data, then compare data in rowcount witth rowcount + 1. If the data matches, then copy to new worksheet rowcount = 1 dup_rowcount = 1 do while cell(rowcount,"A") < "" if cell(rowcount, "A") = cell(rowcount + 1, "A") then worksheet("duplicates").cell(duplicaterowcount, "A") = _ range(cell(rowcount, "A"),cell(rowcount,"D") dup_rowcount = dup_rowcount + 1 endif rowcount = rowcount + 1 loop "ConfusedNHouston" wrote: I am pulling data into a LARGE spreadsheet and that data is coming from 4 separate sites. A product might well be found in sites A, C and D. Others might be found only in A. A sort would obviously group the duplicates, but a sort is not practical. There are over 45,000 rows of data in the spreadsheet and finding dupes "by-eye" would drive me to madness. Is there a way to have Excel "look" down column A and find any item name (alpha-numeric format) that is repeated. Is there a way to segregate or highlight the duplicates; or to produce a list of the duplicates? The idea thing would be if it could copy the duplicating records to a separate worksheet. I'll take what I can get.... Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Chip Pearson has lots of techniques to work with duplicates:
http://www.cpearson.com/excel/duplicat.htm ConfusedNHouston wrote: I am pulling data into a LARGE spreadsheet and that data is coming from 4 separate sites. A product might well be found in sites A, C and D. Others might be found only in A. A sort would obviously group the duplicates, but a sort is not practical. There are over 45,000 rows of data in the spreadsheet and finding dupes "by-eye" would drive me to madness. Is there a way to have Excel "look" down column A and find any item name (alpha-numeric format) that is repeated. Is there a way to segregate or highlight the duplicates; or to produce a list of the duplicates? The idea thing would be if it could copy the duplicating records to a separate worksheet. I'll take what I can get.... Thanks. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help...finding duplicates | Excel Worksheet Functions | |||
Finding duplicates | Excel Worksheet Functions | |||
Finding Duplicates | Excel Worksheet Functions | |||
Finding and Deleting duplicates in a column | Excel Worksheet Functions | |||
Finding Duplicates and somehow flagging them in another column | Excel Discussion (Misc queries) |