如何将单元格中的值除以 Power BI 中整列的总和

问题描述 投票:0回答:1

我想将 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.

powerbi data-analysis powerbi-desktop
1个回答
0
投票

您使用

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

© www.soinside.com 2019 - 2024. All rights reserved.