transpose mdx results => values are lost
问题 I created an MDX query with some named calculus (using 'WITH' keyword). The last part is: SELECT {[Measures].[PCT0p02],[Measures].[PCT0p2],[Measures].[PCT0p5],[Measures].[PCT0p8],[Measures].[PCT0p98]} on 0 FROM [My cube] It gives me this: I would like to transpose these results in order to feed an SSRS report. But write SELECT { } on 0, { [Measures].[PCT0p02],[Measures].[PCT0p2],[Measures].[PCT0p5],[Measures].[PCT0p8],[Measures]. [PCT0p98] } on 1 FROM [My cube] returns Please tell me how not