DISTINCTCOUNTNOBLANK
计算列中非重复 values 的数目。
语法
DISTINCTCOUNTNOBLANK(<column>)
参数
术语 | 描述 |
---|---|
column |
contains 要计数的 values 的列 |
返回 value
column
中的非重复 values 数。
言论
与 DISTINCTCOUNT 函数不同,DISTINCTCOUNTNOBLANKnotcountBLANKvalue。
在计算列 or 行级别安全性 (RLS) 规则中使用时,not 支持在 DirectQuery 模式下使用此函数。
例
以下示例演示如何 count 列 ResellerSales_USD[SalesOrderNumber] 中不同销售订单的数目。
= DISTINCTCOUNT(ResellerSales_USD[SalesOrderNumber])
DAX 查询
EVALUATE
ROW(
"DistinctCountNoBlank", DISTINCTCOUNTNOBLANK(DimProduct[EndDate]),
"DistinctCount", DISTINCTCOUNT(DimProduct[EndDate])
)
[DistinctCountNoBlank] | [DistinctCount] |
---|---|
2 | 3 |