Let's say 3 columns (A, B, C) are dynamic arrays and I want to create a fourth/final dynamic array formula that is the sum of these 3 columns for each row in column D. For clarity, I am looking for the row-by-row sum of each row in this final column.
This will work:
=A2#+B2#+C2#
How can the same be accomplished by using the SUM function? The reason I ask is that this is easier to use on larger ranges of data.
The following gives a #REF! error:
=SUM(A2:C2#)
#
in formula?=SUM(A2:C2)
shall work as you need. – Recalescence=SUM(A2#:C2#)
– Kaifeng=A2#+B2#+C2#
, while#
refers to a spilled range, this would also make me believe OP is after the total. HoweverSUM(A:C)
isn't used which then makes me believe he actually is after a row-by-row calculation – Joettejoey