Let's have the following matrix:
A B C ...
1
2
3
4
A1 - C3 are filled with numbers. A4 - C4 should output the sum from the cells aboth.
Arrayformula(SUM(A1:C3)) only deliveres one output with the sum of all cells. I already found some formulas for sum of arrayformulas but the output was always underneath the array instead of fulfilling to the right...
So it should be like:
A B C ...
1 "1" "3" "2"
2 "1" "2" "3"
3 "3" "1" "2"
4 "5" "6" "7"
But the formula should not be limited to A-C it should go from A - unlimited
Thank you.