我想将 Power BI 中的一个单元格除以另一个单元格的总值之和。
我编写了代码公式,但不幸的是这不起作用。
有人可以帮我吗。
Agg Forecast Accuuracy = IFERROR(([Weightage Selection]/SUM([Weightage Selection])*[Forecast Accuracy]),0)
此计算的Excel公式如下:
这里的计算是(2500/22500)*100。
我收到的错误是:
The SUM function only accepts a column reference as the argument number 1.
您使用
ALLSELECTED
- 请参阅 https://learn.microsoft.com/en-us/dax/allselected-function-dax
示例:
Agg Forecast Accuracy =
DIVIDE(
[Weightage Selection],
ALLSELECTED([Weightage Selection])
) * [Forecast Accuracy]
另请注意
DIVIDE
的使用:https://learn.microsoft.com/en-us/dax/best-practices/dax-divide-function-operator