Sorry if this is too basic. I’ve watched all the training videos, read the MDX intro, and I’m still lost on what the heck is going on.
When I create a calculated measure with ‘[Label].[Dormant]’ I get a number not a set of members. I don’t understand why that is happening. Trying to use the SetToStr() just returns "{[Label].[Dormant]}’… There is no AllProperties to show. I’ve spent three full days now banging my head on this.
I have two calculated measures that almost work.
Measure 1: “Active Issues”
Aggregate({
[Status].[In Progress],
[Status].[Ready for Review],
[Status].[Awaiting IT Completion of Security Controls & Activities],
[Status].[Awaiting Questionnaire from IT],
[Status].[Awaiting Information/Documentation from IT]
})
Aggregate returns a number… Not a set. All the other functions either produce errors or not what I’m after.
The second calculated member is “Dormant Issues”
[Label].[Dormant]
What I want is to make a calculated member that provides the number of “Active Issues” that are also “Dormant Issues”.
How do I do this?