Reputation: 23
I need a simple array formula that calculates the sum from $A$2 to the column in A:A in array formula the picture explains everything
Upvotes: 1
Views: 119
Reputation: 1
try:
=ARRAYFORMULA({"Total"; IF(A2:A="",, SUMIF(ROW(A2:A), "<="&ROW(A2:A), A2:A))})
Upvotes: 1
Reputation: 23
i found it ^_^
`=arrayformula(SI(A1:A="Number";"Total";SOMME.SI(LIGNE(A1:A);"<="&LIGNE(A1:A);A1:A)))`
Upvotes: 0