How to use array formula to return an array of sums in Excel

前端 未结 2 1420
难免孤独
难免孤独 2020-12-18 08:08

eg, we have

 1  2  4
 3  4  5
 4  5  5
 2  4  5

I would like a array formula that returns an ARRAY = {7,12,14,11} Note it is not text, it i

2条回答
  •  既然无缘
    2020-12-18 08:10

    I think this evaluates to the required array and could be extended to larger ranges:

    =MMULT(A1:C4,TRANSPOSE(COLUMN(A1:C4)^0))

提交回复
热议问题