我需要聚合一些基于行和列上下文的乘法。我描述这一点的最佳尝试是使用伪代码。
For each cell in the Pivot table
SUM
Foreach ORU
Percent= Look up the multiplier for that ORU associated with the Column
SUMofValue = Add all of the Values associated with that Column/Row combination
Multiply Percent * SUMofValue
在过去的几天里,我尝试了多种方法,查看了大量示例,但遗漏了一些东西。
具体来说,不起作用的是:
CALCULATE(SUM(ORUBUMGR[Percent]), ORUMAP)*CALCULATE(SUM(Charges[Value]), ORUMAP)
因为您正在计算所有百分比的总和,而不是仅与 MGR 相关联的百分比总和(即列上下文)