MDX Essentials: MDX Member Functions: "Relative" Member Functions - Page 5June 2, 2003 The .NextMember FunctionThe .NextMember function, according to the Analysis Services Books Online, "returns the next member in the level that contains a specified member." In other words, the function returns the member in the dimensional hierarchy occurring later at the same level as the specified member. The .NextMember function works in a manner similar to the .PrevMember function, except that, instead of returning the member that occurs at the same level as the specified member, earlier in the hierarchy, it returns the same-level member that follows the specified member within the hierarchy. Discussion:The utility of the .NextMember function is intuitive for purposes of meeting business needs that include the example we have discussed earlier, the determination of change over a given pair of periods (next year over the current year, and so forth). SyntaxLet's look at an example to familiarize ourselves with the syntax. WITH
MEMBER [Measures].[Warehouse Margin] AS
'[Measures].[Warehouse Sales] - [Measures].[Warehouse Cost]'
SELECT
{([Time].CurrentMember),([Time].NextMember)} ON COLUMNS,
{([Warehouse].[Country].USA)} ON ROWS
FROM Warehouse
WHERE ([Measures].[Warehouse Margin])
The result dataset returned would appear as shown in Illustration 6 below:
The .NextMember function is used within the definition of the calculated member, inside the WITH clause. In this case, we are specifying the next member of the Time dimension at the year level, which turns out to be 1998, because, unlike in previous examples, we have specified no slicer in the WHERE clause. The result is that the current member for the year is the default, 1997. Therefore, the "next" member of the time dimension at the same hierarchical level is 1998. We note that the results we obtain appear consistent with those obtained in previous queries, from slightly different approaches. PracticeLet's practice with the .NextMember function, combining its use with that of the .CurrentMember function, in a manner that assists us in performing analysis of performance from one year to the next, just as we have done before. We return to the MDX Sample Application, creating a new query for the purposes of this exercise. 12. Select File --> New from the top menu of the MDX Sample Application. 13. Type the following query into the Query pane: -- MDX08-3: Tutorial Query No. 3
WITH
MEMBER [Measures].[Margin Base Year] AS
'([Time].CurrentMember , [Measures].[Warehouse Sales])-([Time].CurrentMember,
[Measures].[Warehouse Cost])'
MEMBER [Measures].[Margin Base + 1] AS
'([Time].NextMember , [Measures].[Warehouse Sales])-([Time].NextMember,
[Measures].[Warehouse Cost])'
MEMBER [Measures].[$ Change] AS
'([Time].CurrentMember , [Measures].[Margin Base + 1]) - ([Time].CurrentMember,
[Measures].[Margin Base Year])'
SELECT
{ [Measures].[Margin Base Year], [Measures].[Margin Base + 1], [Measures].[$ Change]} ON
COLUMNS,
{([Warehouse].[Country].[USA])} ON ROWS
FROM Warehouse
14. Select key F5 from the top menu to execute the query. The query runs and the result dataset appears, as shown in Illustration 7.
The query delivers the results as requested; we see the three related calculated measures, Margin Base Year, Margin Base + 1, and $ Change; the latter, $ Change, is again a calculated measure that is made up of the subtraction of one of the first two calculated measures from the other. We see that the behavior of the .NextMember function is, therefore, very similar to that of the .PrevMember function, only it acts, conceptually, "in the opposite direction." We can also readily see the potential usefulness of the function with regard to its capability to support the analysis of measures that change over time, among other uses within our data sources. Next in Our Series ...In this lesson, we began an overview of additional "relative" member functions, expanding upon our earlier exposure to the powerful .Members function, and extending our exploration to the .CurrentMember, .PrevMember and .NextMember functions. We introduced calculated members briefly, as an avenue to demonstrating the use of the "relative" member functions. As we noted in the Calculated Members section above, we will take up calculated members in far more detail as the series progresses; I hope that our initial exposure to them in this article, and our recurring use of them going forward to achieve various objectives, will make their characteristics and uses familiar as we progress in the series. In our next lessons, we will introduce the time series functions group. As we discussed in this lesson, many business requirements revolve around the performance of analysis within the context of time. We saw simple approaches to meeting examples of these requirements by using the CurrentMember, .PrevMember and .NextMember functions in this lesson, mainly because the time dimension provides an intuitive way to demonstrate many functions such as these. Because of pervasive business needs to analyze data within the context of time, MDX provides a specialized group of time series functions to meet these needs. In the next lesson, we will overview the PeriodsToDate() function, then we will discuss the specialized "shortcut" functions that are based upon it, including the YTD(), QTD(), MTD(), and WTD(). In subsequent lessons, we will explore other time series functions and expressions, together with other capabilities of MDX to help us to meet typical business needs. » See All Articles by Columnist William E. Pearson, III Discuss this article in the MSSQL Server 2000 Analysis Services and MDX Topics Forum. MDX Essentials Series
The LEVEL_NUMBER Member Property
The LEVEL_UNIQUE_NAME Intrinsic Member Property Intrinsic Member Properties: The HIERARCHY_UNIQUE_NAME Property Intrinsic Member Properties: The DIMENSION_UNIQUE_NAME Property Further Combination of BottomCount() with Other MDX Functions Combine BottomCount() with Other MDX Functions to Add Sophistication Basic Set Functions: The BottomCount() Function, Part I Intrinsic Member Properties: The MEMBER_VALUE Property Intrinsic Member Properties: The MEMBER_UNIQUE_NAME Property Intrinsic Member Properties: The MEMBER_NAME Property Intrinsic Member Properties: The MEMBER_KEY Property Intrinsic Member Properties: The MEMBER_CAPTION Property Set Functions: The StripCalculatedMembers() Function Set Functions: The AddCalculatedMembers() Function MDX Numeric Functions: The Min() Function MDX Numeric Functions: The Max() Function Set Functions: The .AllMembers Function MDX Essentials: Set Functions: The MeasureGroupMeasures() Function String Functions: The .Properties Function, Part II String Functions: The .Properties Function Logical Functions: IsGeneration(): Conditional Logic within Filter Expressions MDX Scripting Statements: Introducing the Simple CASE Statement Logical Functions: IsGeneration(): Conditional Logic within Calculations Logical Functions: IsAncestor(): Conditional Logic within Filter Expressions MDX Clauses and Keywords: Use HAVING to Filter an Axis Logical Functions: IsAncestor(): Conditional Logic within Calculations Logical Functions: IsSibling(): Conditional Logic within Filter Expressions Logical Functions: IsSibling(): Conditional Logic within Calculations MDX Operators: The IsLeaf() Operator: Conditional Logic within Filter Expressions MDX Operators: The IsLeaf() Operator: Conditional Logic within Calculations MDX Numeric Functions: The .Ordinal Function Other MDX Entities: Perspectives MDX Operators: The IS Operator MDX Set Functions: The Distinct() Function MDX Set Functions: The ToggleDrillState() Function Set Functions: The DrillUpLevel() Function Set Functions: The DrillDownLevelTop() and DrillDownLevelBottom() Functions MDX Set Functions: DrillDownLevel() MDX Set Functions: The DRILLUPMEMBER() Function MDX Essentials: Set Functions: The DRILLDOWNMEMBERTOP() and DRILLDOWNMEMBERBOTTOM() Functions MDX Essentials : Set Functions: The DRILLDOWNMEMBER() Function MDX Essentials: Drilling Through with MDX: The DRILLTHROUGH Statement MDX Essentials: String Functions: The .UniqueName Function MDX Essentials: String Functions: The .Name Function MDX Essentials: String / Numeric Functions: The CoalesceEmpty() Function MDX Essentials: Basic Set Functions: The TopCount() Function, Part II MDX Essentials: Basic Set Functions: The TopCount() Function, Part I MDX Essentials: Enhancing CROSSJOIN() with Calculated Members MDX Essentials: Set and String Functions: The GENERATE() Function MDX Essentials: The CROSSJOIN() Function: Breaking Bottlenecks MDX Essentials: String / Numeric Functions: More on the IIF() Function MDX Essentials: String / Numeric Functions: Introducing the IIF() Function MDX Essentials: Logical Functions: The IsEmpty() Function MDX Essentials: Basic Set Functions: The EXTRACT() Function MDX Essentials: Numeric Functions: Introduction to the AVG() Function MDX Essentials: Basic Member Functions: The .Item() Function MDX Essentials: Basic Set Functions: Subset Functions: The Subset() Function MDX Essentials: Basic Set Functions: Subset Functions: The Tail() Function MDX Essentials: Basic Set Functions: Subset Functions: The Head() Function MDX Essentials: Basic Set Functions: The CrossJoin() Function MDX Essentials: Basic Numeric Functions: The Count() Function MDX Essentials: Basic Set Functions: The Filter() Function MDX Essentials: Basic Set Functions: The EXCEPT() Function MDX Essentials: Basic Set Functions: The Intersect() Function MDX Essentials: Basic Set Functions: The Union() Function MDX Essentials: Basic Set Functions: The Order() Function MDX Essentials - MDX Time Series Functions, Part III: The LastPeriods() and ParallelPeriod() Functions MDX Time Series Functions, Part II: The OpeningPeriod () and ClosingPeriod() Functions MDX Essentials - MDX Time Series Functions, Part I: PeriodsToDate() and Kindred Functions MDX Essentials: MDX Member Functions: "Relative" Member Functions MDX Member Functions: The Cousin () Function MDX Essentials: Member Functions: More "Family" Functions MDX Member Functions: The "Family" Functions MDX Essentials: MDX Members: Introducing Members and Member MDX Essentials : MDX Operators: The Basics MDX Essentials: Structure of the MDX Data Model MDX at First Glance: Introduction to SQL Server MDX Essentials |