NAME
1. Name (Syntax: Hierarchy_Expression.Name)
Description:
This function is used to return the name of hierarchy.
Syntax:
Hierarchy_Expression.Name
Return Type:
SCALAR
Parameters:
Parameter | Description |
|---|---|
Hierarchy_Expression | It is a valid MDX expression that returns a hierarchy. |
Example:
WITH MEMBER Measures.DimensionName AS [Customer].[Geography].Name
SELECT Measures.DimensionName ON 0
from [AdventureWorksMF] 2. Name (Syntax: Level_Expression.Name)
Description:
This function is used to return the name of the level.
Syntax:
Level_Expression.Name
Return Type:
SCALAR
Parameters:
Parameter | Description |
|---|---|
Level_Expression | It is a valid MDX expression that returns a level. |
Example:
WITH MEMBER Measures.DimensionName AS [Customer].[Geography].[Country].Name
SELECT Measures.DimensionName ON 0
from [AdventureWorksMF] 3. Name (Syntax: Member_Expression.Name)
Description:
This function is used to return the name of a member.
Syntax:
Member_Expression.Name
Return Type:
SCALAR
Parameters:
Parameter | Description |
|---|---|
Member_Expression | It is a valid MDX expression that returns a member. |
Example:
WITH MEMBER Measures.DimensionName AS [Customer].[Geography].[Country].&[Australia].Name
SELECT Measures.DimensionName ON 0
from [AdventureWorksMF]