I have a simple MDX , when run on management studio it looks like as the image below:
when I use this query as dataset of reporting service, I can get [Invoice] and [Net Activity Amt] as Field by reference
<?xml version="1.0" encoding="utf-8"?><Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="Measure" UniqueName="[Measures].[Invoice]" />
but, how can I get first two columns in reports since these two columns don't have a column header?
I know if I use query designer on report designer I could get these two columns, but it's harded coded for the dimension (for this case, it would be [Product Descr] ), my problem is, the dimension is dynamic , it might be [Customer]. so the report will fail because there is no column with [Product Descr] any more.
is it possible to reterive these columns without specific a dimension?
Thanks.
)