我想返回具有 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