How to copy rows from a sheet with duplicates in a column to a wor

S

Sathish Rao

I have data with duplicates in one column. I want to copy all the rows with
the duplicates to another empty worksheet within the same workbook. How can
I do this ?
 
L

Luke M

In the column next to your data (column A), put this formula.
=COUNTIF(A:A,A1)
And copy down. Then filter this for all records greater than 1. Select all
the results, and copy to wherever you want to go.
 
Top