Function to add values based on unique values of another column

vinskies

New Member
Joined
Dec 13, 2017
Messages
3
Hi guys,

I'm trying to create a function that looks at column 1 which has values as below for example
and sums corresponding value in column 2.
column 1 has duplicates and I wanted to sum the second column value for every unique column 1 value.


[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]1[/TD]
[TD]10000[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]10000[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]10000[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]3000[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]3000[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]10000[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1000[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1000[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]1000[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]1000[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
=SUM(IF(COUNTIF(A1:A10,A1:A10)>1,IF(MATCH(A1:A10,A1:A10,0)=ROW(A1:A10)-MIN(ROW(A1:A10)),B1:B10),B1:B10))

It's an array formula so after paste it you should Ctrl+Shift+Enter
 
Upvote 0
Here is a shorter version for what you want. You can just paste the formula since SUMPRODUCT returns an array already.

=SUMPRODUCT(1/COUNTIF(A1:A10,A1:A10),B1:B10)
 
Upvote 0

Forum statistics

Threads
1,226,116
Messages
6,189,057
Members
453,523
Latest member
Don Quixote

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top