Sum of row n through last row

后端 未结 4 1007
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-03 19:24

I want to create a TOTAL row at the top of my spreadsheet. In this row, each cell should be the SUM of the values in the column below the TOTAL row.

So for example, i

4条回答
  •  一个人的身影
    2021-02-03 19:34

    Try this

    =SUM(OFFSET(A1,1,0,ROWS(A:A)-1,1))
    

    Works in both Excel and Google Docs

    One downside: by using OFFSET the formula becomes Volatile ie is calculated every time the sheet calculates irrespective of data change.

提交回复
热议问题