March 30, 2012 at 3:04 am
Please forgive me if some terms are not being used 100 percent accurately, I'll try to explain my issue as precise as I can.
Given an MDX query similar to this one:
with
member A as Measure.X
member B as Measure.Y
set C as strtoset("Dim.Member.Children"),caption='Z'
select non empty {A,B} on 0
select non empty {C} on 1
from
MyCube
Dom.Level.Childeren is actually delivered as a parameter from Reporting Services. It will always use a single member, but which member will vary. I want Reporting Services to see the result as follows
CAB
Val111
val222
Unfortunately, what Reporting Services sees is
MemberAB
Val111
val222
Since the member is varying with the parameter, SSRS cannot know what columns are being returned. Thus, I want the first "column" to always be named C, no matter what member it actually contains.
How can I achieve this?
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply