Consulting

Results 1 to 3 of 3

Thread: Solved: Finding and highlighting duplicate names

  1. #1

    Solved: Finding and highlighting duplicate names

    Hi all,

    I have column A(which has names in) and I have been trying to design something that will find duplicate names in column A. What I need is a searching function that starts at A1 and searches column A, then offsets to the cell below and then search for a duplicate of that name etc etc. If it finds a name that is duplicates highlight the cell in yellow

    The problem is the names are variable so I can't use a countif.

    Can anyone help me with this please?

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Select A2 down to the bottom, Use conditional formatting with a formula of

    =COUNTIF($A$1:$A2,$A2)>1
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    thanks very much

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •