Aracılığıyla paylaş


VAROLAN anahtar sözcüğü (mdx)

Geçerli bağlamı içinde değerlendirilmesi için küme zorlar.

Sözdizimi

Existing Set_Expression

Bağımsız değişkenler

  • Set_Expression
    Bir geçerli çok boyutlu ifadeleri (mdx) küme ifadesi.

Açıklamalar

Varsayılan olarak, kümeleri küme üyeleri içeren küp bağlamında değerlendirilir.The Existing keyword forces a specified set to be evaluated within the current context instead.

Örnek

Aşağıdaki örnek, satış önceki reddetti Bayiler sayısını verir saat kullanılarak hesaplandı kullanıcı tarafından seçilen Semte-üye değerlerine dayalı bir dönem Aggregate işlev.The Hierarchize (mdx) and DrilldownLevel (MDX) functions are used to return values for declining sales for product categories in the Product dimension.The Existing keyword forces the the set in the Filter function to be evaluated in the current context - that is, for the Washington and Oregon members of the State-Province attribute hierarchy.

WITH MEMBER Measures.[Declining Reseller Sales] AS
   Count
      (Filter
         (Existing
            (Reseller.Reseller.Reseller)
         , [Measures].[Reseller Sales Amount] < 
            ([Measures].[Reseller Sales Amount]
               ,[Date].Calendar.PrevMember
            )
        )
      )
MEMBER [Geography].[State-Province].x AS 
   Aggregate 
      ( {[Geography].[State-Province].&[WA]&[US]
         , [Geography].[State-Province].&[OR]&[US] } 
      )
SELECT NON EMPTY HIERARCHIZE 
      (AddCalculatedMembers 
         ( 
            {DrillDownLevel
               ({[Product].[All Products]}
               )
            } 
         ) 
      ) DIMENSION PROPERTIES PARENT_UNIQUE_NAME ON COLUMNS 
FROM [Adventure Works]
WHERE 
      ( [Geography].[State-Province].x
        , [Date].[Calendar].[Calendar Quarter].&[2003]&[4]
        ,[Measures].[Declining Reseller Sales]
      )