Duplicates by groups

W

WalterAndersen

I am trying to identify duplicates between two columns. Column A has a
number of customers. Column B has their purchases. I want to identify any
duplicate records in column B for each group of customers in column A. Any
ideas?

See example below. In this example, I would like to highlight/identify Eggs
for Joe (as Eggs are the duplicate in Column B); Cereal and Bread for Susan;
Pete is fine (no duplicates).

I would then need to create a report that would give me Joe and only Eggs
(once) and Apples; Susan Bread (once) and Cereal (once); etc.

Column A Column B
Joe Eggs
Joe Eggs
Joe Apples
Susan Cereal
Susan Bread
Susan Cereal
Susan Bread
Pete Milk
Pete Eggs
 
B

Bernard Liengme

In C1 use =SUMPRODUCT((A1:$A$99=A1)*(B1:$B$99=B1))-1
Copy down the column
Select all the C entries; copy and use Edit | Paste Special Values (to make
the formulas into values)
Sort all the data by column C
Copy and Past the entries with C values greater than 0


OR learn to use a Pivot Table

Debra Dalgleish's pictures at Jon Peltier's site:
http://peltiertech.com/Excel/Pivots/pivottables.htm
And Debra's own site:
http://www.contextures.com/xlPivot01.html

John Walkenbach also has some at:
http://j-walk.com/ss/excel/files/general.htm
(look for Tony Gwynn's Hit Database)

Chip Pearson keeps Harald Staff's notes at:
http://www.cpearson.com/excel/pivots.htm

MS has some at (xl2000 and xl2002):
http://office.microsoft.com/downloads/2000/XCrtPiv.aspx
http://office.microsoft.com/assistance/2002/articles/xlconPT101.aspx

best wishes
 
W

WalterAndersen

Thanks for the info. One more question...

I only want one sales figure as well. Will that formula work (SUMPRODUCT)?

Example
Column A Column B Column C
Joe eggs $5
Joe eggs $5
Joe bread $2
Joe eggs $5
Joe cereal $3
Joe bread $2
Joe eggs $5

I would want to only see the following:
Column A Column B Column C
Joe egss $5
Joe bread $2
Joe cereal $3
 
W

WalterAndersen

Bernd - thanks for the info.

I am getting an error when I run the fomula. Any ideas? The error is
"#NAME?".
 

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