Forum Discussion
Finding duplicates in a large excel sheet
Hi there, can you explain this a little better? I have 109,749 rows of a spreadsheet that I need to check/view duplicates in order to correct them.
rkozak Can you tell me what step you're lost in? The breakdown before with screenshots should cover all the steps
- rkozakApr 15, 2021Copper Contributor
I believe I understand what you're doing; you click the dropdown box where you can select variables to be included in your filter/sort for that given column. It is there that I can see filter by colour. I have tried this on another smaller list and it works easily.
Unfortunately, due to the sheer size of the file my computer always freezes and is unable to process even opening the drop down box because we have 109,749 unique values in that column. These are where the duplicate values are the utmost of importance because they actually correspond to serial numbers we intend to use.- adversiApr 15, 2021Iron Contributor
rkozak an alternative to avoid filtering and coloring can be to use the COUNTIF function
=COUNTIF(A:A,A10)-1
Any figure in the helper column that is greater than 0 has a duplicate.
- hookylifeFeb 15, 2022Copper Contributor
One other way to get results without watching Excel spin for 20 minutes: You can sort the sheet by that column before doing anything else, and use a pretty simple If formula to check the values above and below to flag duplicates.
=IF(OR(D2=D1,D2=D3),"Y","")