次の方法で共有


メンバ関数の使用

メンバ関数は、メンバを返す多次元式 (MDX) 関数です。メンバ関数は、組関数や集合関数と同様に、Analysis Services で使用される多次元構造を操作するために不可欠です。

MDX の多くのメンバ関数で最も重要なのは、階層の現在のメンバを判別する際に使用する、CurrentMember 関数です。次のクエリでは、Parent 関数、Ancestor 関数、および Prevmember 関数と共にこの関数を使用する方法を示します。

WITH

//Returns the name of the currentmember on the Calendar hierarchy

MEMBER MEASURES.[CurrentMemberDemo] AS [Date].[Calendar].CurrentMember.Name

//Returns the name of the parent of the currentmember on the Calendar hierarchy

MEMBER MEASURES.[ParentDemo] AS [Date].[Calendar].CurrentMember.Parent.Name

//Returns the name of the ancestor of the currentmember on the Calendar hierarchy at the Year level

MEMBER MEASURES.[AncestorDemo] AS ANCESTOR([Date].[Calendar].CurrentMember, [Date].[Calendar].[Calendar Year]).Name

//Returns the name of the member before the currentmember on the Calendar hierarchy

MEMBER MEASURES.[PrevMemberDemo] AS [Date].[Calendar].CurrentMember.Prevmember.Name

SELECT{MEASURES.[CurrentMemberDemo],MEASURES.[ParentDemo],MEASURES.[AncestorDemo],MEASURES.[PrevMemberDemo] } ON 0,

[Date].[Calendar].MEMBERS ON 1

FROM [Adventure Works]