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.


110000
110000
110000
23000
23000
310000
41000
41000
51000
51000

<tbody>
</tbody>
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
=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,214,375
Messages
6,119,170
Members
448,870
Latest member
max_pedreira

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