Sum vertically until empty cell on Google Sheets

前端 未结 1 1065
广开言路
广开言路 2021-01-23 04:54

This is the scenario. I need to get the sum of the values until it reaches a blank cell. After that it should start again calculating the sum after the blank cell. I need to add

相关标签:
1条回答
  • 2021-01-23 05:34

    I would just make a small adjustment to your formula:

    IF(C2="",SUM(C3:INDEX(C3:C,MATCH(TRUE,(C3:C=""),0))),"")
    

    so the first total is 11 instead of 9.

    0 讨论(0)
提交回复
热议问题