Indicate Duplicate Entries Across Multiple Columns

C

Cameron

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.
 
J

JBeaucaire

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.
 
C

Cameron

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?
 
J

JBeaucaire

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
 
C

Cameron

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top