Thread: Sum Unique
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ron Rosenfeld Ron Rosenfeld is offline
external usenet poster
 
Posts: 5,651
Default Sum Unique

On Sun, 3 Dec 2006 00:44:24 +1100, "Stephen Rainey"
wrote:

Hi,
I want to identify unique customer names from column A, AND, sum the
respective amounts from Column B, to produce a result similar to that below.
Any suggestions please ?

A B
John 50.00
Peter 11.00
Paul 20.00
Ian 10.00
John 15.00
Ian 20.00
Paul 13.50

RESULT= Ian 30.00
John 65.00
Peter 11.00
Paul 33.50

Regards Steve



You could use a Pivot Table.

Or you could use the SUMIF function.


E1: Ian F1: =SUMIF(A1:A10,E1,B1:B10)
E2: John F2: ...

etc
--ron