MEMBER_NAME

The name of the member.

Syntax

Member_Expression.MEMBER_NAME

Input Parameters

Return Value

Returns the member of a name as a String.

Example

If the product name does not contain "Mountain" return 0 else 1.

IIF(InStr([Product Dimension].[Product Dimension].CurrentMember.MEMBER_NAME, "Mountain") = 0, 0, 1)