IsGeneration (MDX)

Returns whether a specified member is in a specified generation.

Syntax

IsGeneration(Member_Expression, Generation_Number) 

Arguments

  • Member_Expression
    A valid Multidimensional Expressions (MDX) expression that returns a member.
  • Generation_Number
    A valid numeric expression that specifies the generation against which the specified member is evaluated.

Remarks

The IsGeneration function returns true if the specified member is in the specified generation number. Otherwise, the function returns false. Also, if the specified member evaluates to an empty member, the IsGeneration function returns false.

For the purposes of generation indexing, leaf members are generation index 0. The generation index of nonleaf members is determined by first getting the highest generation index from the union of all child members for the specified member, then adding 1 to that index. Because of how the generation index of nonleaf members is determined, a specific nonleaf member could belong to more than one generation.

Example

The following example returns TRUE if [Time].[Fiscal].CurrentMember is part of the second generation:

IsGeneration([Time].[Fiscal].CurrentMember, 2)

See Also

Reference

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.