Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Returns the hierarchy that contains a specified member or level.
Syntax
Member expression syntax
Member_Expression.Hierarchy
Level expression syntax
Level_Expression.Hierarchy
Arguments
Member_Expression
A valid Multidimensional Expressions (MDX) expression that returns a member.
Level_Expression
A valid Multidimensional Expressions (MDX) expression that returns a level.
Examples
The following example returns the name of the Calendar hierarchy in the Date dimension in the AdventureWorks cube.
WITH
MEMBER Measures.HierarchyName as
[Date].[Calendar].Currentmember.Hierarchy.Name
SELECT {Measures.HierarchyName} ON 0,
{[Date].[Calendar].[All Periods]} ON 1
FROM [Adventure Works]