我有一个按月收入的出版商数据集。如果发布商在给定月份的收入等于或大于 1000,则将其视为“活跃”月份。

现在,我想使用 Power BI (DAX) 计算每月趋势中“活跃”发布者的不同数量。

示例数据集

excel - Power BI (DAX) : Distinct Count Filtered by Condition-LMLPHP

这是我尝试的度量公式:

DistCountActiveMonths = CALCULATE(DISTINCTCOUNT('Net Revenue Data'[Publisher Name]),FILTER('Net Revenue Data','Net Revenue Data'[Active Month]=1))

请告知如何更正此公式以达到所需的结果,例如:

excel - Power BI (DAX) : Distinct Count Filtered by Condition-LMLPHP

最佳答案

DistinctCountActiveMonths =
CALCULATE(
    DISTINCTCOUNT( 'Net Revenue Data'[Publisher Name] )
    ,'Net Revenue Data'[Active Month] = 1
)

关于excel - Power BI (DAX) : Distinct Count Filtered by Condition,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35425962/

10-10 18:59