Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 42
Default Indicate Duplicate Entries Across Multiple Columns

I have a large set of data (30,000+ entries) entered in one sheet across
multiple columns. It is assumed that each column contains a non-repetitive
set of data. I need a function that will cross check each column, and
indicate (either by generated list, highlighting, etc), common entries.
Entries are all text in nature, program is Mac Excel 2008. Any help is
appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 222
Default Indicate Duplicate Entries Across Multiple Columns

Hope this works the same as PC, conditional formatting can do it.

Highlight the ENTIRE data set, make sure the first cell is the primary cell
(A1?). Let's presume it's A1:G10000 for the range.

Format Conditional Formatting Condition1: FormulaIs:
=COUNTIF($A$1:$G$10000,A1)1

....and set your pattern background color before saving it. Now ALL the
cells that have data appearing more than once will light up with the color
you select.


--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

I have a large set of data (30,000+ entries) entered in one sheet across
multiple columns. It is assumed that each column contains a non-repetitive
set of data. I need a function that will cross check each column, and
indicate (either by generated list, highlighting, etc), common entries.
Entries are all text in nature, program is Mac Excel 2008. Any help is
appreciated.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 42
Default Indicate Duplicate Entries Across Multiple Columns

That seems to have done the trick. Is there anyway to set a threshold? For
example - saying only highlight if the number of occurrences is greater then
3?

"JBeaucaire" wrote:

Hope this works the same as PC, conditional formatting can do it.

Highlight the ENTIRE data set, make sure the first cell is the primary cell
(A1?). Let's presume it's A1:G10000 for the range.

Format Conditional Formatting Condition1: FormulaIs:
=COUNTIF($A$1:$G$10000,A1)1

...and set your pattern background color before saving it. Now ALL the
cells that have data appearing more than once will light up with the color
you select.


--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

I have a large set of data (30,000+ entries) entered in one sheet across
multiple columns. It is assumed that each column contains a non-repetitive
set of data. I need a function that will cross check each column, and
indicate (either by generated list, highlighting, etc), common entries.
Entries are all text in nature, program is Mac Excel 2008. Any help is
appreciated.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 222
Default Indicate Duplicate Entries Across Multiple Columns

Sure, just change the 1 to 3

=COUNTIF($A$1:$G$10000,A1)3

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

That seems to have done the trick. Is there anyway to set a threshold? For
example - saying only highlight if the number of occurrences is greater then 3?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 42
Default Indicate Duplicate Entries Across Multiple Columns

So far so good. The only problem I'm having is that it seems it's actively
doing the formatting, causing a serious slowdown on the system with the
amount of data that I have. Is it possible to do the formatting once, and
shut the process off, while still remaining formatted?

"JBeaucaire" wrote:

Sure, just change the 1 to 3

=COUNTIF($A$1:$G$10000,A1)3

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

That seems to have done the trick. Is there anyway to set a threshold? For
example - saying only highlight if the number of occurrences is greater then 3?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 222
Default Indicate Duplicate Entries Across Multiple Columns

There's not a way built into Excel. But here's a page that offers 3 macros
that work together to do what you want. Hope this helps.

http://excel.tips.net/Pages/T001947_...E ffects.html

--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

So far so good. The only problem I'm having is that it seems it's actively
doing the formatting, causing a serious slowdown on the system with the
amount of data that I have. Is it possible to do the formatting once, and
shut the process off, while still remaining formatted?

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 222
Default Indicate Duplicate Entries Across Multiple Columns

Actually, you want to get real slick, pick a cell to put a value in, say J1,
then use this formula so you can highlight cells based on the value in that
cell:

=COUNTIF($A$1:$G$10000,A1)$J$1
--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

That seems to have done the trick. Is there anyway to set a threshold? For
example - saying only highlight if the number of occurrences is greater then
3?

"JBeaucaire" wrote:

Hope this works the same as PC, conditional formatting can do it.

Highlight the ENTIRE data set, make sure the first cell is the primary cell
(A1?). Let's presume it's A1:G10000 for the range.

Format Conditional Formatting Condition1: FormulaIs:
=COUNTIF($A$1:$G$10000,A1)1

...and set your pattern background color before saving it. Now ALL the
cells that have data appearing more than once will light up with the color
you select.


--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"Cameron" wrote:

I have a large set of data (30,000+ entries) entered in one sheet across
multiple columns. It is assumed that each column contains a non-repetitive
set of data. I need a function that will cross check each column, and
indicate (either by generated list, highlighting, etc), common entries.
Entries are all text in nature, program is Mac Excel 2008. Any help is
appreciated.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
removing duplicate entries in multiple worksheets monkeytrader Excel Worksheet Functions 1 July 8th 08 06:24 AM
How do I recognize duplicate cells in multiple columns? cp mccall Excel Discussion (Misc queries) 1 August 22nd 06 04:32 AM
Duplicate entries in multiple worksheets m96 Excel Worksheet Functions 0 July 4th 06 12:40 PM
Checking for duplicate entries over multiple worksheets madbloke Excel Discussion (Misc queries) 2 May 11th 06 12:56 PM
Multiple Files, Duplicate Entries PMSunshine77 Excel Discussion (Misc queries) 1 December 10th 04 08:28 PM


All times are GMT +1. The time now is 02:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"