Sum one column based on the unique value in another column

G

Guest

I have the following columns:

Account# - # of Account Holders - # per State
12345 - 3 - 2 in VA
12345 - 3 - 1 in MD
23456 - 1 - 1 in PA


In this example, I need to show that there are 2 Total Accounts with 4 total
account holders

I have used the following to show the total of unique account numbers:
=SUM(IF(FREQUENCY(MATCH(Data!D2:D91,Data!D2:D91,0),MATCH(Data!D2:D91,Data!D2:D91,0))>0,1))

How do I SUM Column B based on unique values in Column A?

Thank you much!
Renee
 
B

Bernard Liengme

I would be tempted to make a pivot table with Accounts in the Row area,
Holders in the Column area and Holders COUNTED in the data area.
best wishes
 

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