Array of SUMs?

BrianGGG

Board Regular
Joined
Mar 5, 2016
Messages
62
Hello.

I have a simple set of numbers as below:


BCD
73456
74789
75101112
76323

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Summary





I'd like to return an array of column sums rather than the grand total sum of all numbers, e.g. my desired answer is {24;26;30} rather than 80.
However, any syntax that I give to sum (e.g. SUM(b73:d76), etc.) gets mashed up into a single total.

My goal is to write a single formula to "spill" across the columns with the new dynamic arrays (rather than copy the formula across). Any array function (with or without the new dynamic array functions like SEQUENCE) will work for me.

Any ideas?


thanks
BrianGGG
 
I tried to select the 3 horizontal columns and enter the formula.
[....]
B79:D79 {=SUM(INDEX(B73:D76,0,{1;2;3}))}

Be mindful of the meaning of the different separators in array constants. Also be mindful of localization differences (period v. comma for decimal point; comma v. semicolon to separate parameters; etc).

I am using US languages rules.

The semicolon separates rows in array constants. (I believe that is true for all languages.) So you are entering a vertical array formula into a horizontal range. In that context, only the first row of the array formula is selected and duplicated across the horizontal range.

My original horizontal formula uses comma to separate columns in the array constant. (Caveat: I believe some languages substitute another character for comma in this context: back-slash?) So I enter a horizontal array formula into a horizontal range.

In contrast, my vertical formula uses semicolon. But correspondingly, I select a vertical range.
 
Upvote 0

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Unfortunately, I am using the Insider Edition of Excel 2016 along with Dynamic Arrays. There is no such thing as CSE anymore

For real?! Thanks for that heads-up. I don't know beans about Office 365, not to mention the ever-changing world of insider ("experimental") features.
 
Upvote 0
{=SUM(INDEX(B73:D76,0,{1;2;3}))}

<tbody>
</tbody>

<tbody>
</tbody>

Read joeu2004's posts again. You've transposed the required array. You should be using {1,2,3} for a horizontal array, not {1;2;3}.

Regards
 
Upvote 0
XOR LX is expert at finding creative, albeit contorted, ways to fool Excel into delivering embedded arrays.
"Contorted"? "Fool Excel"?

You once posted the following (brilliant!) solution:

=XIRR(INDEX($C:$C,N(IF(1,(MODE.MULT(IF($A$2:$A$47=F2,{1,1}*ROW($A$2:$A$47))))))),
INDEX($B:$B,N(IF(1,MODE.MULT(IF($A$2:$A$47=F2,{1,1}*ROW($A$2:$A$47)))))))

You explained that you empirically discovered that the extra syntax was necessary to make it work.

Is that not "contorted"? Aren't you "fooling" (coercing would be a better word) Excel into doing the right thing?

(Rhetorical questions.)
 
Upvote 0
Is that not "contorted"? Aren't you "fooling" (coercing would be a better word) Excel into doing the right thing?
Guilty! :) And here's to contortion and coercion in all their myriad forms! (y)

Merry Christmas to all!
 
Upvote 0
Thanks All. I once again mixed up the blasted semi-colon vs. comma as suspected. I fixed that, and now both the {1,2,3} and SEQUENCE formats work.
 
Upvote 0

Forum statistics

Threads
1,215,497
Messages
6,125,158
Members
449,208
Latest member
emmac

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