+ Reply to Thread
Results 1 to 3 of 3

Conditional Formatting

  1. #1
    Registered User
    Join Date
    07-24-2006
    Posts
    57

    Conditional Formatting

    I have a chart of more than one column. The first column holds names starting at A2 in aplha order. I need to scan from A2 onwards (to A200 for example) and highlight the cells that are duplicates (or triple copies). For example:

    ...
    Smith, John
    Smith, John
    Johnson, George

    In this list, Smith, John will highlight.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try this

    =IF(COUNTIF($A$2:$A$100, $A1)>1,TRUE,FALSE)

    This site should help

    http://www.cpearson.com/excel/duplicat.htm

    VBA Noob

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675
    Select A2:A200

    use CF with "formula is"

    =COUNTIF(A$2:A$200,A2)>1

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1