Level (MDX)
メンバのレベルを返します。
構文
Member_Expression.Level
引数
- Member_Expression
メンバを 1 つ返す有効な多次元式 (MDX) 式です。
例
次の例では、Level 関数を使用して、Adventure Works キューブ内のすべての月を返します。
SELECT[Date].[Fiscal].[Month].[February 2002].Level.Members ON 0,
[Measures].[Internet Sales Amount] ON 1
FROM [Adventure Works]
次の例では、Level 関数を使用して、Adventure Works キューブ内の Model Name 属性階層にある All-Purpose Bike Stand のレベル名を返しています。
WITH MEMBER Measures.x AS
[Product].[Model Name].[All-Purpose Bike Stand].Level.Name
SELECT Measures.x ON 0
FROM [Adventure Works]