I want to use a Element/member name in a filter.
For example I Have a dimension period with elements 201301 to 202512. I have an attribute 'Current Period' which is 201311 for all the elements. And now I want to make a MDX statement which gives me back the Current and all the following periods.
If I make an attribute Period Name (Text or Alias) and populate it with the element names the next MDX gives me what I want;
Code: Select all
{FILTER( {TM1SUBSETALL( [Period] )}, [Period].[Period Name] >= [Period].[Current Period])}
Can someone help me out here!
Thnx Sander