Summing a product with selection Criteria

cjbirm

New Member
Joined
Mar 29, 2019
Messages
2
I'm trying to make a table that will sum a the product of a value and probability based on a criteria value in another column. The table below is an example of what I'm trying to do:

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Criteria[/TD]
[TD]Prob[/TD]
[TD]2019[/TD]
[TD]2020[/TD]
[TD]2021[/TD]
[TD]2022[/TD]
[/TR]
[TR]
[TD]X[/TD]
[TD]100%[/TD]
[TD]41[/TD]
[TD]10[/TD]
[TD]75[/TD]
[TD]150[/TD]
[/TR]
[TR]
[TD]X[/TD]
[TD]90%[/TD]
[TD][/TD]
[TD]24[/TD]
[TD]24[/TD]
[TD]24[/TD]
[/TR]
[TR]
[TD]Y[/TD]
[TD]65%[/TD]
[TD][/TD]
[TD]53[/TD]
[TD]160[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]X[/TD]
[TD]70%[/TD]
[TD][/TD]
[TD]25[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]X[/TD]
[TD]70%[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]2019[/TD]
[TD]2020[/TD]
[TD]2021[/TD]
[TD]2022[/TD]
[/TR]
[TR]
[TD]X[/TD]
[TD]41[/TD]
[TD]49.1[/TD]
[TD]96.6[/TD]
[TD]171.6[/TD]
[/TR]
[TR]
[TD]Y[/TD]
[TD]0[/TD]
[TD]34.45[/TD]
[TD]104[/TD]
[TD]0[/TD]
[/TR]
</tbody>[/TABLE]

Instead of just hard-coding the SUM and Product function in the bottom table, I would like to use equations so I can just add more rows or columns to the top table and have the bottom table automatically update. If tried playing around with the PRODUCT, IF, and SUMIF equations, but I can't seem to get any of them to work.

Any suggestions?
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
You'll want to know about SUMPRODUCT:
=SUMPRODUCT(( $A$3:$A$7 = $A10) * ( $B$3:$B$7) * ( C$3:C$7))

Enter the formula in the bottom table for X for 2019 and copy throughout the table.
 
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,848
Members
453,379
Latest member
gabriellegonzalez

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