MemberProperty

Note:

MemberProperty is applicable to Planning details and Essbase Cloud database connections.

MemberProperty is a text function. Based on the syntax used, it returns the member property value of a dimension in the row, column, page, or Point of View (POV). You can use this function to display a member property in a text row or column.

ArgumentDescription
GridNameName of the grid.
Row/Col/PageNumeric identifier of the row, the alphabetical identifier of the column, or the numeric identifier of the page.
POV DimNameName of the dimension on the grid or user POV.
PropertyAny custom property (attribute dimensions).

Examples:

Return the member property assigned to the Product dimension in Grid1, column A:

<<MemberProperty("Grid1", A, Product,Pkg Type)>>

<<MemberProperty(current, A, Product, Pkg Type)>>

Return the member property for the Market dimension. The syntax is placed on the grid’s custom heading:

<<MemberProperty("Market", Population)>>

<<MemberProperty(current, Population)>>

Return the member property for the Market dimension for the POV associated with Grid1:

<<MemberProperty("Grid1", Market, CurrencyCategory)>>

<<MemberProperty(current, Market, CurrencyCategory)>>

Retrieve the Member Alias and Ounces property of a product in a custom heading. (To do this, select the heading, then on the Heading Row Properties sheet, select the Custom Heading option, and then click Functions).

<<MemberAlias(current, current, Product)>>:
<<MemberProperty(current, current, Product, Ounces)>>

The report output would resemble the following:

The image describes the report output using the MemberProperty function.

Note:

MemberProperty only supports the Current keyword when used in a grid cell, not in a text box object, header, or footere. See Using the Current/Cur Keyword in a Text Function.