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

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
=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,223,911
Messages
6,175,335
Members
452,636
Latest member
laura12345

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