I am facing an issue in report creation . I have a dimension which has many consolidations :
Then we have another consolidation containing The Total of all these Accounts Displayed like this :-AccountParent-C0001 ->AccountParent-P0001 -> AccountChild-M0001
-AccountParent-C0002-> AccountParent-P0002 ->AccountChild-M0002
I would like in my report to make the Accounts drillable but the Total Not drillable , Like this :-Total
+AccountParent-C0001
+AccountParent-C0002
In this report I am using TM1RPTROW, Like this :+AccountParent-C0001
+AccountParent-C0002
-Total ( Not drillable )
Code: Select all
TM1RPTROW($A$1;ServerName&":Account";"";;"Alias";0;$A$2;;1)
with $A$2 = {TOPCOUNT(DESCENDANTS([Account].[Total]),10,Dim2,Dim3,Dim4))}+{[Account].[Total]}
Then I tried Only Selecting 'Total' which is at level 4 , Like this:
Code: Select all
$A$2 = {TOPCOUNT(DESCENDANTS([Account].[Total]),10,Dim2,Dim3,Dim4))}+{Filter( TM1FilterByLevel( [Account],4),[Account].[Total])}"
IS there any way to Make All the AccountParents Drill down and Only Total Not drill down ?-AccountParent-C0001( Not drillable )
-AccountParent-C0002( Not drillable )
-Total ( Not drillable )
Thank you in advance