I Have this query:
SELECT NON EMPTY {
[Art].[Art].[Art].ALLMEMBERS * [Measures].[Costs] * [Measures].[Margin]
} ON COLUMNS
FROM [Model]
CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE,
FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
I get an error, stating that this cannot be done. My idea is to show, for each member, its cost and margin, as follows:
Article 1 | Article 2 | Article 3
cost | margin | cost | margin | cost | margin
Which would be the correct way? By the way, any good tutorial or website to learn about creating mdx queries?