Tricky summation

BKGLTS

Board Regular
Joined
Aug 27, 2018
Messages
82
Hello,

I am needing a tricky (for me) summation of a row.

Row 1 - I have a very long row of percentage values ranging from 0 to 100. (Column A blank)
Row 2 - I have a very long row of values ranging from 0 to Infinity. (Column A Blank)

Cell B4 - I have a fixed value of 0 to Infinity.

I need to create a summation in Cell A2 for Row 2.

The summation in Cell A2 needs to be derived by doing the following for each cell in its row with a value greater than 0.
So, starting with the first cell (B2) in Row 2 the formula looks like this:
=IF(B2>0,B2*($B$4*B1),0)

It would look like this for the second cell in the row (C2):
=IF(C2>0,C2*($B$4*C1),0)

and so on...

Say for example there are 10 cells in Row 2 that have values greater than 0, and each of them results in the product value of 10 after applying the previous formula to it, the resulting sum value of A2 would be 100 because it adds all those values together for that row.


Another way to say it is it needs to take B2 multiplied by B1 & B4, then take C2
multiplied by C1 & B4,
then take D2 multiplied by D1 & B4, and so on... for all the cells in Row 2 that have a value greater than zero, and then add up the results of all those calculations and place the sum in cell A2.


<strike style="background-color: transparent; color: rgb(34, 34, 34); font-family: Verdana; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: line-through; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"></strike>
<strike></strike>
Tank you,
Brandon
 
Last edited:

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi,

If I understand correctly.
Change adjust cell/range references as needed.


Book1
ABCDEFGHIJKLM
112340678910
23362345678010111213
3
48
Sheet363
Cell Formulas
RangeFormula
A2=SUMIF(B2:ZZ2,">0",B1:ZZ1)*B4
 
Last edited:
Upvote 0
Jtakw,

Thank you for that, but that is not quite what I need.
Using your example it would go like this:

B2*B1*B4=16
C2*C1*B4=48
D2*D1*B4=96
E
2*E1*B4=160
F
2*F1*B4=0
G
2*G1*B4=336
H
2*H1*B4=448
I
2*I1*B4=0
J
2*J1*B4=720
K
2*K1*B4=880
L
2*L1*B4=0
M
2*M1*B4=0

Then all those results are summed up in cell A2=2,704

Thank you,
B
 
Last edited:
Upvote 0
Ahh, missed the part about Row 2, here's a corrected formula.

But then, I don't understand the Need for the condition to Test Row 2 to be >0, since if we are multiplying, if row 2 is 0, the product will be 0 anyway...

A2 formula tests for Row2 being 0,
A3 formula skips this test:


Book1
ABCDEFGHIJKLM
112340678910
227042345678010111213
32704
48
Sheet363
Cell Formulas
RangeFormula
A2=SUMPRODUCT((B2:ZZ2>0)*B1:ZZ1*B2:ZZ2*B4)
A3=SUMPRODUCT(B1:ZZ1*B2:ZZ2*B4)
 
Last edited:
Upvote 0
Thank you!
This appears to work great, but I am running into a snag.
Some of my Row 1 cells are set to blank because they contain formulas.
THis is causing the A2 formula you provided to error out.
You can replicate what I am seeing by sticking this formula in the L1 cell.
=IF(B4=0,1,"")

Is there something that can be done to ignore these blanks or utilize them as zeros?

Thank you!
B
 
Upvote 0
The easiest way to fix this problem is to Change your formulas in Row 1 to return a 0 (zero) instead of a Blank ( "" ), but this formula will work without that change, it is now an Array formula to be confirmed by CSE (Control, Shift, Enter), see instructions below:


Book1
ABCDEFGHIJKLM
112340678910  
227042345678010111213
3
48
Sheet363
Cell Formulas
RangeFormula
L1=""
M1=""
A2{=SUM((IF(ISNUMBER(B1:ZZ1),B1:ZZ1))*B2:ZZ2*B4)}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Last edited:
Upvote 0
You're welcome, glad it's working for you.
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

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