DistinctCount (MDX)
セット内の個別の空でないタプルの数を返します。
構文
DistinctCount(Set_Expression)
引数
Set_Expression
セットを返す有効な多次元式 (MDX) 式。
解説
DistinctCount 関数は とCount(Distinct(Set_Expression), EXCLUDEEMPTY)
同じです。
例
次のクエリでは、DistinctCount 関数の使用方法を示します。
WITH SET MySet AS
{[Customer].[Customer Geography].[Country].&[Australia],[Customer].[Customer Geography].[Country].&[Australia],
[Customer].[Customer Geography].[Country].&[Canada],[Customer].[Customer Geography].[Country].&[France],
[Customer].[Customer Geography].[Country].&[United Kingdom],[Customer].[Customer Geography].[Country].&[United Kingdom]}
*
{([Date].[Calendar].[Date].&[20010701],[Measures].[Internet Sales Amount] )}
MEMBER MEASURES.SETDISTINCTCOUNT AS
DISTINCTCOUNT(MySet)
SELECT {MEASURES.SETDISTINCTCOUNT} ON 0
FROM [Adventure Works]
DistinctCount 関数は、セット内のアイテムの個別の数を返します。この例では、オプションの 2 番目のパラメーターを使用して、特定のタプルの値を持たない項目を除外します。 この場合、最初のパラメーターの セットには 4 つの異なる項目がありますが、オーストラリア、カナダ、フランスのみが 2001 年 7 月 1 日のインターネット売上金額のデータを持っているため、関数は 3 つを返します。