0

我想返回具有 13 个周期值的块中的列中的最大值。

Max([CountVariable]) 返回每个周期的值。Max([CountVariable] forAll([Period)) 返回所有值的总和。

这就是我得到的:

Period CountVariable Max([CountVariable])  Max([CountVariable] forAll([Period))
1      10            10                    45
2      15            15                    45
3      20            20                    45

这就是我想要的:

Period CountVariable Max
1      10            20
2      15            20
3      20            20
4

1 回答 1

1

你很近。要获得所有时段的最大值,您需要在输出上下文中设置要评估的变量。为此,您可以在 Max() 函数之外指定上下文运算符 (ForAll)。所以:

Max([CountVariable]) forAll([Period])
于 2019-05-02T12:36:36.863 回答