我想將工作表 Sheet1 中從 B75 到 DY75 的所有數字相加,並將其添加到工作表 Sheet2 中從 B74 到 DY74 的所有數字總和,以獲得總平均值。換句話說:
total average = (sum of the numbers from Sheet1 + sum of all the numbers from Sheet2) / n
其中 n 是數字總數。
我已經嘗試過=Average(Sheet1! B75: k74: B74: k74)
,但這不起作用。
我可以使用什麼公式來完成這項任務?
答案1
你必須這樣寫:
=AVERAGE(Sheet1!B75:DY75,Sheet2!B74:DY74)