I have an array constant defined in cell A1 as {1,2,3}. This is displayed as "1" (the first value in the array).
I would like to get the formula SUM (A1) return 6. However, SUM uses A1 as a single-cell array, not the array constant contained within A1, and so SUM (A1) returns 1.
Similarly, I expect AVERAGE (A1) to return 1 instead of 2.
So, how do I get SUM (A1) to return the same value as SUM ({1,2,3})?
I do not want the array constant to be a named reference, because I define a different array constant for each row.
It seems to me that I'm stuck in C ++ without the possibility of dereferencing!
source
share