I want to sum every 7 rows in a worksheet and put the sum in different column & rows

后端 未结 1 1973
北海茫月
北海茫月 2021-01-12 17:58

I have never really used Excel before but this seems like it should be possible.

I have an ongoing document where I will be adding values every day, but what I want

相关标签:
1条回答
  • 2021-01-12 18:21

    In D12, put

    =SUM(OFFSET($B$7,(ROW()-12)*8,0,8,1))
    

    and fill down column D as far as you want. Note that B7:B14 is really 8 rows, not 7. If you really want 7 rows (B7:B13), then change the two 8's to 7's in the formula.

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