Thank you all for looking into this.
Here's the formula I have in Google sheets:
=ArrayFormula(IF(ROW(A:A)=1, "R", IF((I:I)>0,SUM((K:K):(AI:AI)),"")))
I'm putting it in an ArrayFormula in the hopes that when a new row is created it will compute the same calculations but instead of adding all the numbers in that specific row, it adds all the numbers in a 2D array.
What am I doing wrong here? Any help would be so much appreciated....
sum
doesn't work within arrayformula
. Instead try mmult
;
=ArrayFormula({"R";IF((I2:I)>0,mmult(value(K2:AI),transpose(column(K2:AI)^0)),)})