Need help to create mdx query for my report

  • HI!

    In my cube are 2 dimensions and one measure.

    And now, I want to present this in a report. But I can't state more than 1 dimension, like this:

    SELECT

       { [Measures].[CountValues]} ON COLUMNS,

       { [Art].[KZ].Members} ON ROWS

    FROM Cube1

    How can I make this ?

    Thanks for your help !

    Regards,

    Markus

     

  • Hello Markuss21,

    just try it with CROSSJOIN's like

    SELECT

    { [Measures].[CountValues]}

    ON COLUMNS,

    { [Art].[KZ].Members} * { [dimension2].[xy].Members}

    ON ROWS

    FROM Cube1

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply