Page 1 of 1

To get the element name in dimension using the attributes name in tm1

Posted: Wed Jun 20, 2018 12:30 pm
by kavitha2002
Hi Everyone,

In TM1, is there a way to get the element name using the attributes name in }ElementsAttributesCube using MDX statement.

Thanks in advance

Re: To get the element name in dimension using the attributes name in tm1

Posted: Wed Jun 20, 2018 1:10 pm
by Elessar
Hi,

If the attribute is alias, you can just use "{[Dimension].[AliasValue]}" and switch alias OFF in subset.
If it is not, there can be several elements with this attribute, so you can filter by this attribute: {FILTER( {TM1SUBSETALL( [Dimension] )}, [Dimension].[AttributeName] = "AttributeValue")}