LastChild (MDX)

Returns the last child of a specified member.

Syntax

Member_Expression.LastChild 

Arguments

  • Member_Expression
    A valid Multidimensional Expressions (MDX) expression that returns a member.

Example

The following example returns the value for September 2001, which is the last child of the first fiscal quarter of fiscal year 2002.

SELECT [Date].[Fiscal].[Fiscal Quarter].[Q1 FY 2002].LastChild ON 0
FROM [Adventure Works]

See Also

Reference

FirstChild (MDX)
MDX Function Reference (MDX)

Help and Information

Getting SQL Server 2005 Assistance

Change History

Release History

17 July 2006

Changed content:
  • Updated syntax and arguments to improve clarity.
  • Added updated examples.