How do I sum, excluding duplicate values?

PattiK323

New Member
Joined
Jun 12, 2014
Messages
35
Example:

I have one item number ABCDE but this item number appears 3 times, on rows 1 through 3. Each row lists a different raw material off the bill of material, along with the budgeted tons.

Material A 5 lb. 500 tons ABCDE
Material B 1 lb. 500 tons ABCDE
Material C 2lb. 500 tons ABCDE

This is repeated for hundreds of items. I want to verify how many tons are budgeted by summarizing item and tons.

Example:

ABCDE 500 tons [I only want the 500 included in the sum once, not the 3 times that it appears]
FGHIJ xxx tons
KLMNO xx tons

How do I do this?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
As a test:

Material A5lb.500tonsABCDE
Material B1lb.500tonsABCDE ABCDE500
Material C2lb.500tonsABCDE FGHIJ700
Material D 700 FGHIJ KLMNO250
Material E 250 KLMNO
Material F 250 KLMNO
Material G 700 FGHIJ

<colgroup><col><col span="5"><col><col span="2"></colgroup><tbody>
</tbody>

Would this work in I2:I7 or further down rather than just 7? My column I is where the total amounts are (I had a blank G column)

Code:
=INDEX($D:$D,MATCH(H2,$F:$F,0))
 
Upvote 0
D has the tons (e.g., 500, 500, 500, 700, 250, 250, 700) -- are they always the same for a given ITEM?

My F is ABCDE, etc.

MATCH will find the first match being equal to the ABCDE, etc.

Change the Index/Match accordingly based on your set-up.
 
Last edited:
Upvote 0
Here with column and row names, i shared the formula you already received and an alternative formula. Consider changing your source data to a table
and then you can create a unique list from column F using a 1 row pivot table(this will sum the amount for you too) , and run your formulas from that. So you don't have to update it
also you can add =iferror(yourformula,"") to get rid of the errors so you can extend the list down




Excel 2010
ABCDEFGHIJKLMNO
1Material A5lb.500tonsABCDE500500ABCDE500500Sums1450#N/A
2Material B1lb.500tonsABCDE500500FGHIJ700700
3Material C2lb.500tonsABCDE500500KLMNO250250
4Material D700tonsFGHIJ700700#N/A
5Material E250tonsKLMNO250250#N/A
6Material F250tonsKLMNO250250#N/A
7Material G700tonsFGHIJ700700#N/A
Sheet6
Cell Formulas
RangeFormula
G1=SUMIF($F$1:F7,F1,$D$1:D7)/COUNTIF($F$1:$F$7,F1)
H1=INDEX($D:$D,MATCH(F1,$F:$F,0))
J1=IFERROR(SUMIF($F$1:F7,I1,$D$1:D7)/COUNTIF($F$1:$F$7,I1),"")
K1=INDEX($D:$D,MATCH(I1,$F:$F,0))
N1=SUM(J1:J7)
O1=SUM(K1:K7)
 
Last edited:
Upvote 0
Hey Twollaston...How do you paste that image into the body of the reply with the row/column indicators?

Kevin
 
Upvote 0
Hey Twollaston...How do you paste that image into the body of the reply with the row/column indicators?

Kevin

I downloaded the(2017) html maker from here

https://onedrive.live.com/?id=8CFFDEC0CE27E813!189&cid=8CFFDEC0CE27E813

Extract file to excel add ins folder (you can find path by going to excel on developer tab by selecting excel addins and selecting browse- copy path, paste as extraction path)

Check(on your extracted file) properties -> General and make sure it’s not blocked at the bottom

Enable htmlmaker in excel addins(developer tab -> excel addins-> enable checkbox)

Set excel addins folder path as trusted in trust settings

Open htmlmaker tab in excel

Highlight the excel cells you want

Select type of formula display (I use show first column in each row)

It will copy the html display code to your clipboard and just paste it into your reply on the forum.

If you need any help doing this feel free to PM me and I’m happy to further explain
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,449
Members
448,966
Latest member
DannyC96

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