Weighted Average with sumif

DataLytic

New Member
Joined
Mar 15, 2018
Messages
2
Hi I would like get weighted average margin by category.
I want to use the sales to weight the margins.
Any help? thanking in advance

[TABLE="width: 458"]
<colgroup><col><col><col span="2"><col></colgroup><tbody>[TR]
[TD] [/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD="align: right"]1[/TD]
[TD]Invoice Number[/TD]
[TD]Product[/TD]
[TD]Sales[/TD]
[TD]Margin[/TD]
[/TR]
[TR]
[TD="align: right"]2[/TD]
[TD="align: right"]22[/TD]
[TD]Pen[/TD]
[TD="align: right"]110[/TD]
[TD="align: right"]15%[/TD]
[/TR]
[TR]
[TD="align: right"]3[/TD]
[TD="align: right"]28[/TD]
[TD]Books[/TD]
[TD="align: right"]200[/TD]
[TD="align: right"]11%[/TD]
[/TR]
[TR]
[TD="align: right"]4[/TD]
[TD="align: right"]26[/TD]
[TD]Rubber[/TD]
[TD="align: right"]220[/TD]
[TD="align: right"]25%[/TD]
[/TR]
[TR]
[TD="align: right"]5[/TD]
[TD="align: right"]32[/TD]
[TD]Ink[/TD]
[TD="align: right"]125[/TD]
[TD="align: right"]65%[/TD]
[/TR]
[TR]
[TD="align: right"]6[/TD]
[TD="align: right"]152[/TD]
[TD]Pen[/TD]
[TD="align: right"]225[/TD]
[TD="align: right"]48%[/TD]
[/TR]
[TR]
[TD="align: right"]7[/TD]
[TD="align: right"]225[/TD]
[TD]Books[/TD]
[TD="align: right"]451[/TD]
[TD="align: right"]54%[/TD]
[/TR]
[TR]
[TD="align: right"]8[/TD]
[TD="align: right"]365[/TD]
[TD]Rubber[/TD]
[TD="align: right"]225[/TD]
[TD="align: right"]22%[/TD]
[/TR]
[TR]
[TD="align: right"]9[/TD]
[TD="align: right"]445[/TD]
[TD]Ink[/TD]
[TD="align: right"]145[/TD]
[TD="align: right"]15%[/TD]
[/TR]
[TR]
[TD="align: right"]10[/TD]
[TD="align: right"]224[/TD]
[TD]Pen[/TD]
[TD="align: right"]36[/TD]
[TD="align: right"]48%[/TD]
[/TR]
[TR]
[TD="align: right"]11[/TD]
[TD="align: right"]257[/TD]
[TD]Books[/TD]
[TD="align: right"]45[/TD]
[TD="align: right"]65%[/TD]
[/TR]
[TR]
[TD="align: right"]12[/TD]
[TD="align: right"]45[/TD]
[TD]Rubber[/TD]
[TD="align: right"]889[/TD]
[TD="align: right"]33%[/TD]
[/TR]
[TR]
[TD="align: right"]13[/TD]
[TD="align: right"]6987[/TD]
[TD]Ink[/TD]
[TD="align: right"]54[/TD]
[TD="align: right"]5%[/TD]
[/TR]
[TR]
[TD="align: right"]14[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD="align: right"]15[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD]Weighted Average Margin[/TD]
[/TR]
[TR]
[TD="align: right"]16[/TD]
[TD] [/TD]
[TD]Pen[/TD]
[TD] [/TD]
[TD]?[/TD]
[/TR]
[TR]
[TD="align: right"]17[/TD]
[TD] [/TD]
[TD]Books[/TD]
[TD] [/TD]
[TD]?[/TD]
[/TR]
[TR]
[TD="align: right"]18[/TD]
[TD] [/TD]
[TD]Rubber[/TD]
[TD] [/TD]
[TD]?[/TD]
[/TR]
[TR]
[TD="align: right"]19[/TD]
[TD] [/TD]
[TD]Ink[/TD]
[TD] [/TD]
[TD]?[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hi Data

I have recently been faced with a similar task, and this is the formula I used on your data.

=SUMPRODUCT(--($C$3:$C$14="Pen"),$E$3:$E$14,$D$3:$D$14)/SUMIFS($D$3:$D$14,$C$3:$C$14,"Pen")

You can type in the name "pen/Product" or select the cell in the column to the left.

Let me know if this helps?

Thanks
 
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,725
Members
453,368
Latest member
positivemind

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