Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 956 Bytes

File metadata and controls

41 lines (30 loc) · 956 Bytes
description LastChild (MDX)
title LastChild (MDX) | Microsoft Docs
ms.date 02/17/2022
ms.prod sql
ms.technology analysis-services
ms.custom mdx
ms.topic reference
ms.author owend
ms.reviewer owend
author minewiskan

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

FirstChild (MDX)
MDX Function Reference (MDX)