How to do ProductSum

chungyin383

New Member
Joined
Dec 31, 2016
Messages
5
How to evaluate this sum with one formula?
gif.latex


Example:

1 2 3
4 5 6
7 8 9

The formula should return 3240.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
=SUMPRODUCT(1+2*(ROW(INDIRECT("1:"&$A$1))-1))

In A1 your maximum value.

Hope it helps you.

Thanks but it seems that your formula does not do what I want...
Let me illustrate what I wish to achieve. In the matrix in my example, the column sums are 12, 15, 18 respectively. The product is therefore 3240. Can I use one formula to give 3240 directly?
 
Upvote 0
Thanks but it seems that your formula does not do what I want...
Let me illustrate what I wish to achieve. In the matrix in my example, the column sums are 12, 15, 18 respectively. The product is therefore 3240. Can I use one formula to give 3240 directly?

Let I1:K3 house the data.

Control+shift+enter, not just enter:

=PRODUCT(MMULT(TRANSPOSE(I1:K3),ROW(I1:K3)^0))
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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