In Google Sheets, I have the following data:
| A | B | C | ... | N | TOTALS | 1 | 123| 425| 324| ... | 234| =SUM(A1:N1) | 2 | 123| 425| 324| ... | 234| =SUM(A2:N2) | 3 | 123| 425| 324| ... | 234| =SUM(A3:N3) | How can I create the TOTALS column using ARRAYFORMULA?
ARRAYFORMULA(SUM(A1:C99)) will give a single number, the sum of all the cells — that’s not what I want.
=BYROW(A:N; LAMBDA(x; SUM(x))). I'm not submitting it as an answer as it's not my work. stackoverflow.com/questions/21797621/…