日期的最后x个单元的平均值<今日()

时间:2018-03-07 11:48:19

标签: google-sheets formulas

我们正在google工作表中跟踪订单。此表还显示了产品的预测。现在我们想获得过去15天的平均订单数量。所以函数必须是这样的: =平均值(今天之前的最后15个单元格)

enter image description here

我得到了这个,但它唯一可行,如果预测不会出现:

=AVERAGE(INDEX(L3:ACV3;COUNTA(L3:ACV3)-14):ACV3)  

1 个答案:

答案 0 :(得分:1)

尝试,

=average(index(3:3, 1, match(today(), 2:2, 0)-14):index(3:3, 1, match(today(), 2:2, 0)))
=average(index(3:3; 1; match(today(); 2:2; 0)-14):index(3:3; 1; match(today(); 2:2; 0)))