Sum range over sheets in google spreadsheets

前端 未结 2 2006
你的背包
你的背包 2021-01-01 16:33

Is it possible to range over sheets in one spreadsheet ?

Ive got sheets: S, A, B, C, D. In S I would like to do (for some cell C4):

 =SUM(A:D!C4) 
         


        
2条回答
  •  渐次进展
    2021-01-01 17:11

    You just need to mention the sheet names as well. Though, you'll have to mention each sheet name seperately. Something like this would work

    =SUM(A!C4, B!C4, C!C4, D!C4)

提交回复
热议问题