Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everybody,
I have a chunk of records stored in excel and are tracked by account number. Some of the account numbers are duplicated and I wish to run a macro which can loop through the records and highlight the row s which have duplicated account numbers. How do i do it? Thanks in advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You don't need a macro, conditional formatting will do it.
Select all the rows. Menu FormatConditional Formatting Change Condition 1 to Formula Is Add a formula of =COUNTIF($A:$A,A1)1 Click Format, select the Pattern tab, and choose a colour OK out This assumes the account is in column A, and you start at row 1. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... Hi everybody, I have a chunk of records stored in excel and are tracked by account number. Some of the account numbers are duplicated and I wish to run a macro which can loop through the records and highlight the row s which have duplicated account numbers. How do i do it? Thanks in advance |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It does not work. It highlighted wrong records which are not duplicated
"Bob Phillips" wrote: You don't need a macro, conditional formatting will do it. Select all the rows. Menu FormatConditional Formatting Change Condition 1 to Formula Is Add a formula of =COUNTIF($A:$A,A1)1 Click Format, select the Pattern tab, and choose a colour OK out This assumes the account is in column A, and you start at row 1. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... Hi everybody, I have a chunk of records stored in excel and are tracked by account number. Some of the account numbers are duplicated and I wish to run a macro which can loop through the records and highlight the row s which have duplicated account numbers. How do i do it? Thanks in advance |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Works for me, although it is better if the formula is
=COUNTIF($A:$A,$A1)1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... It does not work. It highlighted wrong records which are not duplicated "Bob Phillips" wrote: You don't need a macro, conditional formatting will do it. Select all the rows. Menu FormatConditional Formatting Change Condition 1 to Formula Is Add a formula of =COUNTIF($A:$A,A1)1 Click Format, select the Pattern tab, and choose a colour OK out This assumes the account is in column A, and you start at row 1. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... Hi everybody, I have a chunk of records stored in excel and are tracked by account number. Some of the account numbers are duplicated and I wish to run a macro which can loop through the records and highlight the row s which have duplicated account numbers. How do i do it? Thanks in advance |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Bob, it works! It works!. Thanks for the assistance. :)
"Bob Phillips" wrote: Works for me, although it is better if the formula is =COUNTIF($A:$A,$A1)1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... It does not work. It highlighted wrong records which are not duplicated "Bob Phillips" wrote: You don't need a macro, conditional formatting will do it. Select all the rows. Menu FormatConditional Formatting Change Condition 1 to Formula Is Add a formula of =COUNTIF($A:$A,A1)1 Click Format, select the Pattern tab, and choose a colour OK out This assumes the account is in column A, and you start at row 1. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Zen" wrote in message ... Hi everybody, I have a chunk of records stored in excel and are tracked by account number. Some of the account numbers are duplicated and I wish to run a macro which can loop through the records and highlight the row s which have duplicated account numbers. How do i do it? Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
more rows highlight than I want | Excel Discussion (Misc queries) | |||
Highlight rows | Excel Worksheet Functions | |||
Small Macro Revision - to highlight rows and enter how many times they appear in a cell rather than a msg box. | Excel Programming | |||
Macro to highlight rows and... | Excel Programming | |||
Highlight rows | Excel Programming |