| description | FirstSibling (MDX) |
|---|---|
| title | FirstSibling (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 |
Returns the first child of the parent of a member.
Member_Expression.FirstSibling
Member_Expression
A valid Multidimensional Expressions (MDX) expression that returns a member.
The following query returns the first sibling of fiscal year 2003 in the Fiscal hierarchy, which is Fiscal Year 2002.
SELECT [Date].[Fiscal].[Fiscal Year].&[2003].FirstSibling ON 0
FROM [Adventure Works]