I am working to create an MDX query in that brings back the top 10 'BDE's'. The details are as follows
Cube: zz BDE
Dimension: zz BDE (this is the dimension where I want the top 10 from)
Measure: Gross Net Written Premium (this is in a dimension called 'zz Measures')
So far I have tried
Code: Select all
{TOPCOUNT({TM1FILTERBYLEVEL( {TM1SUBSETALL( [zz BDE] )}, 0)}, 10, [zz BDE].([zz Measures].[Gross Net Written Premium]))}
Can anyone please clarify which fields go into the last part of this formula to pull back this info?
Many thanks in advance.