excel平均最近90天的列

时间:2018-05-30 14:39:57

标签: excel

我在excel 2010上使用windows 7 professional

我有一张表:

  • 第1列是DATE(不包括周末),
  • 第2列是数字。

我会每天更新此表以获取当天的新数据。

我想创建一个计算过去90天的平均列数的函数。 (第2列数字来自Vlookup数据表)

最初我尝试了这个公式,我收到了一个错误:

=AVERAGEIFS(B:B,A:A,">="today()-90,A:A,"<="today())

i copied the data to a google sheet so i can share

1 个答案:

答案 0 :(得分:2)

更改为

=AVERAGEIFS(B:B,A:A,">="&F6,A:A,"<="&F7)