Momba Musende
Momba Musende

Reputation: 77

How can I write an MDX query in Microsoft Reporting Services that displays measures names on Rows?

How can I write an MDX query in Microsoft Reporting Services that displays some measures names in the fact table and total measures (amount) associated to that measure?, and measure names should be on the rows. For example, a fact table has measures as follows;

FK  FK2   Measure AA Measure BB
1     4           60         89
2     4           15         78

The MDX query should display

 Measure AA        149
 Measure BB         93

How can I achieve this??

Upvotes: 1

Views: 452

Answers (1)

gonsalu
gonsalu

Reputation: 3184

This is a known limitation of Reporting Services; you have to use a workaround, which is to use the MDX query as an expression.

="SELECT { ... } ON ROWS "
&"     , { ... } ON COLUMNS "
&"  FROM MyCube"

Upvotes: 1

Related Questions