Support center for flex.bi version 4.0

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Returns one member from set with specified position (starting from zero) or name.

Syntax

Index syntax
Set_Expression.Item(index)

String expression syntax
Set_Expression.Item(String_Expression1 [ ,String_Expression2,...n])

Arguments

Set_Expression
MDX expression that returns set.
index
Numeric expression that specifies the position of tuple in the set.
String_Expression
String expression that is a typically a tuple expressed in a string.

Examples

In the following example item function can be used to return the first element in a sorted member list to get the last invoice for the current customer. 

order(
  Filter(
    [Invoice].[Invoice].members,
    [Invoice].CurrentMember.getString('Customer code') = [Customer].CurrentMember.getString('KEY')
  ),
  [Invoice].CurrentMember.get('Invoice date'),
  DESC
).Item(0).get('Invoice date')

See also

 

  • No labels