• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

find duplicates and unique (single)

udprocks

Member
Dear Ninja's,

Hope going all well.

I Have a query again like i have an excel sheet with contact numbers and that is not in sequence like if one same no is in cell b1 then second in b19 or something like this, i just want to show in next column infront of number it will show me duplicate except one unique that should be blank. if possible


Many thanks in advance.

Also i have attached a sample sheet with expected result.
 

Attachments

  • duplicate.xlsx
    10.5 KB · Views: 2
If you want the keep the last instance as the unique:
=IF(COUNTIF(B2:B$73,B2)>1,"Duplicate","")
To keep first instance as unique:
=IF(COUNTIF(B2:B$2,B2)>1,"Duplicate","")
 
If you want the keep the last instance as the unique:
=IF(COUNTIF(B2:B$73,B2)>1,"Duplicate","")
To keep first instance as unique:
=IF(COUNTIF(B2:B$2,B2)>1,"Duplicate","")
Thanks a lot luke sir, exactly what i want. thanks again.:)
 
Back
Top