Can someone tell me how to search for duplicate numbers in a column of an EXCEL 2000 spreadsheet. I have been doing this manually, but it is teadious with long lists (5000+).
Use a helper column alongside your data. In the next empty column (say D2)
try
=COUNTIF(A:A,A2)
This will give you a count of how many cells identical to A2 there are in
column A. You can then autofill this down.
Hope this helps.
Andy.
David said:
Can someone tell me how to search for duplicate numbers in a column of an
One way of doing it is to create a copy of the worksheet for data manipulation. Then sort the dara array by the column that contains the duplicates by ascending order. Assuming the data is in column B, write a formula in column C to compare the adjacent cells in column B to identify the duplicates. A formula can be written in cell C2 as =if(B2=B1,"Duplicate",0). This formula can then be copied and pasted to reach the end of data array in column B
Regards
J.C.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.