使用arrayformula对所有行中的所有值求和

时间:2017-09-01 12:35:15

标签: google-sheets array-formulas

我需要一些关于使用arrayformula来总结每行G26:AD的建议。 由于行数是动态的,我想使用arrayformula。 并且= ArrayFormula(总和(G26:26))不起作用。

我尝试使用mmult,但没有设法让它工作。 = MMULT(G26:26,转置(ARRAYFORMULA(COLUMN(G26:26)^ 0)))

还有其他想法吗?

1 个答案:

答案 0 :(得分:3)

按行数总和

A:C中每行的总和:

=arrayformula(mmult(A2:C*1, transpose(A2:C2 * 0 + 1)))

enter image description here

修改。这个更短:=arrayformula(mmult(A2:C*1, transpose(A2:C2 ^ 0)))

按条件

的行求和

=arrayformula(mmult(A2:C*--(A2:C>0), transpose(A2:C2 ^ 0)))

enter image description here

其他条件:

=arrayformula(mmult(A2:D*1, transpose(A2:D2 ^ 0*iseven(column(A2:D2)))))

enter image description here