根据日期和数据名称查找标准差

时间:2019-02-11 21:47:26

标签: excel date criteria standard-deviation

标题总结了我正在尝试做的事情。我的数据如下所示:

              201801  201802  201803 201804  201805  201806  201807  201808
    Carrots   1.05    1.10    1.12   1.09    1.08    1.06    1.20    1.26
    Lettuce   2.10    2.20    2.24   2.18    2.16    2.12    2.40    2.52
    Tomatoes  0.53    0.55    0.56   0.55    0.54    0.52    0.60    0.63

如果这些值比201803年更新,我希望Excel查找这些值的方差。

所以对于胡萝卜,我想要方差为(1.09,1.08,1.06,1.20,1.26)。我不想硬编码,因为我每个月都会收到新数据,再增加一个月。因此,系列的方差每个月都会移到一列上。

我希望我的最终结果是这样的,其中根据上面的数据自动计算方差,该数据每月都会更改,并根据序列名称(胡萝卜)选择数据。

             Variance of Price
   Carrots   .23
   Lettuce   .15
   Tomatoes  .11

我认为日期指示器会有所帮助。

1 个答案:

答案 0 :(得分:1)

将此用作数组公式:

for (auto rit = std::make_reverse_iterator(++my_map.find(A[i])); rit != my_map.rend(); ++rit) { 
//check conditions on rit->second
}

作为数组公式,退出编辑模式时需要使用Ctrl-Shift-Enter而不是Enter进行确认。

enter image description here