How to delete duplicate items in excelsheet(column), where it has to delete the items which has more than one occurrence:
1
2
3
3
4
4
If we use remove duplicate option, it will give distinct values, but what should be done to get only values
1
2
Since 1 and 2 values are not duplicated and these two have only one occurance in a Excel(column)
Follow Below Steps.
Consider you have data in
column AWrite formula as
=IF(COUNTIF(A:A,A1)=1,0,1)incolumn B.Apply Step 3 for all rows that are there.
Wherever you have duplicate data, you will see
1incolumn Belse you will see value as0. 🙂Go To menu
Dataand apply filter for1. Those are the rows that are duplicate. Want to delete it?? Delete it 🙂Here is the demo