Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a spreadsheet with over a thousand rows. That sheet contains five
columns. I am doing an average on column 5, but have some duplicates. I want to identify those duplicates so that I can eliminate them. If columns 1, 2 and 3 are the same for any of the rows, the row(s) is a duplicate. Is there an easy way to identify these duplicates quickly, using a function or pivot table? Thanks for any help!! Jeff |
#2
![]() |
|||
|
|||
![]()
I suggest sorting the table by column 1, then 2, then 3 (but first add a
column somewhere with consecutive line numbers if you want to be able to get things back in their original order). Once sorted, make up a column for identifying duplicates and use an IF like the following in each cell of this column to find the duplicates. =if(and(A1=A2, B1=B2, C1=C2),"X","") Then eliminate any row with an "X" in it. These are your duplicates. Then you can re-sort back to the original order, if desired. - Will "Spyder" wrote: I have a spreadsheet with over a thousand rows. That sheet contains five columns. I am doing an average on column 5, but have some duplicates. I want to identify those duplicates so that I can eliminate them. If columns 1, 2 and 3 are the same for any of the rows, the row(s) is a duplicate. Is there an easy way to identify these duplicates quickly, using a function or pivot table? Thanks for any help!! Jeff |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding five new rows every 40 rows in a spreadsheet? | Excel Discussion (Misc queries) | |||
Row selections by row # OR by even/odd rows in another spreadsheet | Excel Discussion (Misc queries) | |||
How do I delete blank rows at the bottom of a spreadsheet to get . | Excel Discussion (Misc queries) | |||
copy qualifying rows to another spreadsheet | Excel Worksheet Functions | |||
Data Filter - Not all rows in spreadsheet will display in Autofilt | Excel Worksheet Functions |