Power BI (DAX):按条件过滤的不同计数
Power BI (DAX): Distinct Count Filtered by Condition
我有一个数据集,其中包含按月计算收入的发布商。如果发布商在给定月份的收入等于或大于 1000,则被视为 "active" 个月。
现在,我想使用 Power BI (DAX) 计算每月趋势中 "active" 发布者的不同数量。
示例数据集
这是我尝试的度量公式:
DistCountActiveMonths = CALCULATE(DISTINCTCOUNT('Net Revenue Data'[Publisher Name]),FILTER('Net Revenue Data','Net Revenue Data'[Active Month]=1))
请告知如何更正此公式以获得所需的结果,例如:
DistinctCountActiveMonths =
CALCULATE(
DISTINCTCOUNT( 'Net Revenue Data'[Publisher Name] )
,'Net Revenue Data'[Active Month] = 1
)
我有一个数据集,其中包含按月计算收入的发布商。如果发布商在给定月份的收入等于或大于 1000,则被视为 "active" 个月。
现在,我想使用 Power BI (DAX) 计算每月趋势中 "active" 发布者的不同数量。
示例数据集
这是我尝试的度量公式:
DistCountActiveMonths = CALCULATE(DISTINCTCOUNT('Net Revenue Data'[Publisher Name]),FILTER('Net Revenue Data','Net Revenue Data'[Active Month]=1))
请告知如何更正此公式以获得所需的结果,例如:
DistinctCountActiveMonths =
CALCULATE(
DISTINCTCOUNT( 'Net Revenue Data'[Publisher Name] )
,'Net Revenue Data'[Active Month] = 1
)