Forum Discussion
GMKubala
Dec 09, 2020Copper Contributor
Finding duplicates in a large excel sheet
I have a very large spreadsheet of approximately 316,000 rows. I have used the conditional formatting tool to help me find duplicates. My next step is to use the find tool and search for the duplicat...
adversi
Apr 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.
hookylife
Feb 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","")