I've scoured several boards but have not been able to find this exact question or unable to get responses to similar questions to work because I struggle with MDX. I want to sum/count a value only if the brand values from the 2 dimensions below are equal.[Placement].[Placement Brand]ABC[Metric].[Brand]ABC[Measures].[Value]What I basically want to create is a calculated measure that looks like this, but I know the tuple in my sum() is what is causing the problem and not sure how to fix it or limit it to that brand that satisfies the = in the expresions.IIF([Placement].[Placement Brand].MEMBERVALUE = [Metric].[Brand].MEMBERVALUE, SUM([Metric].[Brand],[MEASURES].VALUE), 0)The other piece to this I want this to be able to work even if I'm not using the [Placement] dimension...is that even possible?Thanks for any help!
↧