DistinctCount (MDX)
Bir kümede, farklı, boş olmayan dizilerini sayı.
DistinctCount(Set_Expression)
Bağımsız değişkenler
- Set_Expression
Sayı geçerli bir çok boyutlu deyimler (MDX) ifade bir küme.
Remarks
The DistinctCount işlev is equivalent to Count(Distinct(Set_Expression), EXCLUDEEMPTY).
Örnekler
Aşağıdaki sorgu, DistinctCount işlevini kullanmak gösterilmiştir:
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].&[1],[Measures].[Internet Sales Amount] )}
//Returns the value 3 because Internet Sales Amount is null
//for the UK on the date specified
MEMBER MEASURES.SETDISTINCTCOUNT AS
DISTINCTCOUNT(MySet)
SELECT {MEASURES.SETDISTINCTCOUNT} ON 0
FROM [Adventure Works]