rollups of Calculated members? -
12-17-2003
, 08:51 PM
Hello,
I have a statistical measure called outcome. It has
some numeric codes describing the different possible
outcomes of a survey. I also have some calculated members
that utilize the codes. For example I might 201 or 203
outcomes from some surveys. The calculated member I
created, called COMPLETED, checks to see if the value is
201 or 203 and returns a 1 indicating a true condition.
----------------------
IIf(Measures.[OUTCOME]=201 or Measures.[OUTCOME]=203 , 1,
0)
----------------------
I want to rollup a count of all 1's for this calculated
member COMPLETED within an arbitrary dimension. All I get
are 0's because I don't go to the leaf levels.
Does anybody have any suggestions? |