+ Reply to Thread
Results 1 to 5 of 5

Macro Which Highlights Rows That Contain Identical First Cells

  1. #1
    Registered User
    Join Date
    03-08-2004
    Posts
    50

    Macro Which Highlights Rows That Contain Identical First Cells

    Does anyone know of or can write a macro which will highlight the entire row of cells in which the values in A column are identical / repeats.

    What I need is this, for example:

    aaaa bbbb bbbb bbbb
    aaaa dddd dddd dddd
    aaaa cccc cccc cccc
    1111 1111 1111 1111
    mmmm xxxx xxxx xxxx
    mmmm tttt tttt tttt
    9999 9999 9999 9999
    yyyy hhhh hhhh hhhh
    yyyy iiii iiii iiii
    0000 0000 0000 0000
    ssss mnjk zzzz dddd
    ssss fdfc ftgy edsw



    Thus the resulting output would be:

    The rows which contain 'aaaa' will be highlighted because the values in Column A are identical to each other.

    The rows which contain 'mmmm' will be highlighted because the values in Column A are identical to each other.

    The rows which contain 'yyyy' will be highlighted because the values in Column A are identical to each other.

    The rows which contain 'ssss' will be highlighted because the values in Column A are identical to each other.

    (Note, the highlight can all be one color, even though, for example: 'aaaa' and 'mmmm' are not identical values.


    I don't know how to write macros at all and wasn't able to find one that does this. I am eternally grateful or any help that can be provided.
    Last edited by luu980; 04-14-2006 at 08:16 AM.

  2. #2
    Don Guillett
    Guest

    Re: Macro Which Highlights Rows That Contain Identical First Cells

    Wouldn't it be easier to just use
    data>filter>autofilter

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "luu980" <luu980.2696up_1145016610.6263@excelforum-nospam.com> wrote in
    message news:luu980.2696up_1145016610.6263@excelforum-nospam.com...
    >
    > Does anyone know of or can write a macro which will highlight the entire
    > row of cells in which the values in A column are identical / repeats.
    >
    > What I need is this, for example:
    >
    > aaaa bbbb bbbb bbbb
    > aaaa dddd dddd dddd
    > aaaa cccc cccc cccc
    > 1111 1111 1111 1111
    > mmmm xxxx xxxx xxxx
    > mmmm tttt tttt tttt
    > 9999 9999 9999 9999
    > yyyy hhhh hhhh hhhh
    > yyyy iiii iiii iiii
    > 0000 0000 0000 0000
    > ssss mnjk zzzz dddd
    > ssss fdfc ftgy edsw
    >
    > Leaving me:
    >
    > Thus the rows which contain 'aaaa', 'mmmm', 'yyyy', 'ssss' will be
    > highlighted because the values in Column A are identical to each other.
    >
    >
    > (Note, the highlight can all be one color, even though, for example:
    > 'aaaa' and 'mmmm' are not identical values.
    >
    >
    > I don't know how to write macros at all and wasn't able to find one
    > that does this. I am eternally grateful or any help that can be
    > provided.
    >
    >
    > --
    > luu980
    > ------------------------------------------------------------------------
    > luu980's Profile:
    > http://www.excelforum.com/member.php...fo&userid=6931
    > View this thread: http://www.excelforum.com/showthread...hreadid=532911
    >




  3. #3
    Registered User
    Join Date
    03-08-2004
    Posts
    50
    Ah ha! I found the solution!!:

    The Duplicate Master
    http://members.iinet.net.au/~brettdj/


    This thing does everything I need and more!!!

  4. #4
    Tom Ogilvy
    Guest

    RE: Macro Which Highlights Rows That Contain Identical First Cells

    Select cell A2. then click on the row 2 label on the left of the worksheet
    (to the left of column 1). Then hold down the shift key and go to the last
    row you want to have this behavior and click on that row label. Assume that
    is row 100. Now row 2:100 are selected Make sure A2is the ActiveCell.

    Now go to format=>conditional formatting

    In the dialog, change the "Cell Value Is" dropdown to "formula is"
    in the formula box put in
    =AND($A2=$A3,$A2<>"")
    then click formatting and select the color from the pattern tab.

    Now click Add
    Again, change to "Formula Is" and put in a formula like

    =AND($A2=$A1,$A2<>"")

    click the format button and select your color from the pattern tab.

    no OK you way out.

    If row1 is to be include as well, then select row1 alone with A1 as the
    active cell and put in a formula like

    =AND($A1=$A2,$A1<>"")

    with appropriate formatting

    --
    Regards,
    Tom Ogilvy





    "luu980" wrote:

    >
    > Does anyone know of or can write a macro which will highlight the entire
    > row of cells in which the values in A column are identical / repeats.
    >
    > What I need is this, for example:
    >
    > aaaa bbbb bbbb bbbb
    > aaaa dddd dddd dddd
    > aaaa cccc cccc cccc
    > 1111 1111 1111 1111
    > mmmm xxxx xxxx xxxx
    > mmmm tttt tttt tttt
    > 9999 9999 9999 9999
    > yyyy hhhh hhhh hhhh
    > yyyy iiii iiii iiii
    > 0000 0000 0000 0000
    > ssss mnjk zzzz dddd
    > ssss fdfc ftgy edsw
    >
    > Leaving me:
    >
    > Thus the rows which contain 'aaaa', 'mmmm', 'yyyy', 'ssss' will be
    > highlighted because the values in Column A are identical to each other.
    >
    >
    > (Note, the highlight can all be one color, even though, for example:
    > 'aaaa' and 'mmmm' are not identical values.
    >
    >
    > I don't know how to write macros at all and wasn't able to find one
    > that does this. I am eternally grateful or any help that can be
    > provided.
    >
    >
    > --
    > luu980
    > ------------------------------------------------------------------------
    > luu980's Profile: http://www.excelforum.com/member.php...fo&userid=6931
    > View this thread: http://www.excelforum.com/showthread...hreadid=532911
    >
    >


  5. #5
    Registered User
    Join Date
    03-08-2004
    Posts
    50
    Hi Tom,

    I just tried out your solution. Works like a charm!!! Thank you very much!!!

+ 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