TM1 Report Column on Element Attribute

Post Reply
ravi
Posts: 138
Joined: Mon Apr 26, 2010 12:39 pm
OLAP Product: cognos
Version: tm1 9.5
Excel Version: 2007

TM1 Report Column on Element Attribute

Post by ravi »

Hi
Is it possible to display an element attribute in a report? are there amy function that can call the attribute directly in a report column.



For example: The Expenditure Type element has an Attribute called Expenditure Category. We would like to show the category in a report.

Expenditure Category Expenditure Type
Labor Labor Regular



Please advise.
Ravi
jstrygner
MVP
Posts: 195
Joined: Wed Jul 22, 2009 10:35 pm
OLAP Product: TM1
Version: 9.5.2 FP3
Excel Version: 2010

Re: TM1 Report Column on Element Attribute

Post by jstrygner »

If you mean a report in Perspectives, use DBRA worksheet function.

Code: Select all

=DBRA("ServerName:DimensionName";"DimensionElementName";"AttributeName")
As DBRA works like DBRW, which means displays the value, but also enables user to change it from Perspectives level I sometimes use:

Code: Select all

=""&DBRA("ServerName:DimensionName";"DimensionElementName";"AttributeName")
This way such a cell is "read-only".

HTH
David Usherwood
Site Admin
Posts: 1458
Joined: Wed May 28, 2008 9:09 am

Re: TM1 Report Column on Element Attribute

Post by David Usherwood »

One word of warning - I noticed the delimiters in your example are ; . I'm guessing that this is a function of your version of Windows, or of Excel, or of your language settings. I'm based in the UK and I would see , used as delimiters.
jstrygner
MVP
Posts: 195
Joined: Wed Jul 22, 2009 10:35 pm
OLAP Product: TM1
Version: 9.5.2 FP3
Excel Version: 2010

Re: TM1 Report Column on Element Attribute

Post by jstrygner »

Yes, that is my Excel setting I use, probably comas are more common around the world.
Post Reply