如何在 PowerBI 中使用 GROUPBY 函数?

How to use GROUPBY function in PowerBI?

我尝试在 Power BI 中使用 group by DAX 函数作为度量、新列、新 Table 但我在验证函数时遇到错误,

New Table = GROUPBY(
            'tab1',
            'tab1'[color],
            "Group By color",
            sum('tab1'[count_lables])
          )

Error : Function 'GROUPBY' scalar expressions have to be Aggregation functions over CurrentGroup(). The expression of each Aggregation has to be either a constant or directly reference the columns in CurrentGroup().

错误提示您需要对一个组使用聚合函数,您使用的 SUM 函数不会对任何组的值求和。在您的情况下,您需要使用 SUMX 聚合函数和 CURRENTGROUP() 选项。 CURRENTGROUP 确定必须根据当前行添加的组。

请尝试使用以下表达式。

New Table = GROUPBY (
        tab1,
        tab1[color],
        "Group by color", SUMX ( CURRENTGROUP (), tab1[count lables] )
    )

如果有帮助请告诉我。