Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 1.87 KB

File metadata and controls

58 lines (43 loc) · 1.87 KB
title Cousin (MDX) | Microsoft Docs
ms.date 06/04/2018
ms.prod sql
ms.technology analysis-services
ms.custom mdx
ms.topic reference
ms.author owend
ms.reviewer owend
author minewiskan

Cousin (MDX)

Returns the child member with the same relative position under a parent member as the specified child member.

Syntax

  
Cousin( Member_Expression , Ancestor_Member_Expression )  

Arguments

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

Ancestor_Member_Expression
A valid Multidimensional Expressions (MDX) member expression that returns an ancestor member.

Remarks

This function operates on the order and position of members within levels. If two hierarchies exist, in which the first one has four levels and the second one has five levels, the cousin of the third level of the first hierarchy is the third level of the second hierarchy.

Examples

The following example retrieves the cousin of the fourth quarter of fiscal year 2002, based on its ancestor at the year level in fiscal year 2003. The retrieved cousin is the fourth quarter of fiscal year 2003.

SELECT Cousin   
   ( [Date].[Fiscal].[Fiscal Quarter].[Q4 FY 2002],  
     [Date].[Fiscal].[FY 2003]  
   ) ON 0  
FROM [Adventure Works]  

The following example retrieves the cousin of the month of July of fiscal year 2002 based on its ancestor at the quarter level in the second quarter of fiscal year 2004. The retrieved cousin is the month of October of 2003.

SELECT Cousin   
   ([Date].[Fiscal].[Month].[July 2002] ,  
    [Date].[Fiscal].[Fiscal Quarter].[Q2 FY 2004]  
   ) ON 0  
FROM [Adventure Works]  

See Also

MDX Function Reference (MDX)