Adding data in rows

A

amax

Thanks so much for all the help so far!

I am looking now for a (hopefully relatively simple) way to ADD (no
combine) data in cells in column b if the cells in column a match.
Example:

aaa 1
aaa 5
bbb 3
ccc 2
ccc 1
aaa 6

Would yeild:

aaa 12
bbb 3
ccc 3

Any ideas??? Many thanks
 
J

Jason Morin

The quickest way would be via a Pivot Table under the Data
menu. But you could also list all the unique cells
(assuming the list is small) from column A in cells F1:F3,
then use this G1 and copy down:

=SUMIF(A:A,F1,B:B)

HTH
Jason
Atlanta, GA
 

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