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

highlights duplicate value

ushaanu

Member
Hi all,

I have some data with me in excel I need highlights duplicates value but one condition like if data like

Geeta
Neena
Geeta

here Geeta is duplicate now I need only one geeta highlight.

Thanks
Anu
 
Goto conditional formatting and put this formula in conditional formatting menu with formula

=COUNTIF($A$1:$A1,A1)=1

assumes your data in col A
 
Faseeh is on the right track, but the formula as posted will highlight all items that occur only once. To highlight duplicates you want

=COUNTIF($A$1:$A1,A1)>1

Step by step:

Assuming your data is in column A and starts in row 1 (adjust to your real scenario):
- select column A
- On the Home ribbon click Conditional Formatting > New Rule > Use a formula to determine...
- Copy the formula above into the formula box (and adjust to your column and first row number). The $ signs are important.
- Select a format and OK all dialogs.

cheers, teylyn
 
Yes, that's how I understand the question: Highlight duplicates, i.e. show me items that appear more than once. If an item appears three or four (or more) times, it will also be highlighted.
 

Attachments

  • 2015-07-07_22-50-36.gif
    2015-07-07_22-50-36.gif
    3.8 KB · Views: 2
Last edited:
hi ,

can we do one other thing in this data if in cell A value is highlighted then in cell AZ value delete.

Thanks in advance

Anu
 
Back
Top