I have a standard mdx query, along the lines of:
select
crossjoin
(
Product.[Hierarchy]
, Measures.[Measure]
) on rows
, Location.Hierarchy
on columns
from
cube
however, I'm trying to use this as the source of a SSRS report and SSRS is trying to hard code all the location columns.
I think what's needed is this mdx to produce normalized results, i.e. :
Product Location Measure Value
prod1 store1 sale 5.2
prod2 store1 qty 3
there will be multiple measures for each product/store combination.
Is it possible to do this in MDX?
Thanks
--------------------
Procrastinate Now!
select
crossjoin
(
Product.[Hierarchy]
, Measures.[Measure]
) on rows
, Location.Hierarchy
on columns
from
cube
however, I'm trying to use this as the source of a SSRS report and SSRS is trying to hard code all the location columns.
I think what's needed is this mdx to produce normalized results, i.e. :
Product Location Measure Value
prod1 store1 sale 5.2
prod2 store1 qty 3
there will be multiple measures for each product/store combination.
Is it possible to do this in MDX?
Thanks
--------------------
Procrastinate Now!