• 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.

Output to List as Duplicate using Excel Formulaes

sonypsunny

New Member
Hello


I have given below a sample table where in the 2nd Column the output is shown.


Is there anyway to display the same output using Excel Formulas?


Name Duplicate/Not


Ann Not

Steve Duplicate

Tom Duplicate

Mark Not

Steve Duplicate

Tom Duplicate

Tom Duplicate


Thanks


Sony
 
Hi sonypsunny,


With your data located in A1:A7, enter this formula in B1 and drag it down"


Code:
=IF(COUNTIF($A$1:$A$7,A1)>1,"Duplicate","Not")


..will give you required result.


Regards,

Faseeh
 
Back
Top