Please help me, who knows.
I want to create a dynamic subset in the TM1 with MDX commands.
For example, there is a cube with dimensions CFR, MyParam. I need to create a subset of all the values of CFR, if the intersection [CFR] and [MyParam].[MyType] =15. Can I write a query such a structure?:
Code: Select all
SubsetCreatebyMDX('MyCFR','SELECT FILTER({[CFR]}, ([Measures].[MyParam].[MyType])= 15) ON ROWS, {[Measures].[MyParam].[MyType]} ON COLUMNS FROM [TestCube]');