Hi all,
I want to create a colour expression on a Calculated Member that will apply one colour code if a dimension member equals X and another if it equals Y. e.g (please ignore my MDX syntax, just trying to explain what I mean!:
iif([Call Type].[Call Direction].&[b]Outbound[/b],iif([measures].[%Connects] > 0.20, 16711680 /*Blue*/, 255 /*Red*/)), // over 20% Outbound then Blue
iif([Call Type].[Call Direction].&[b]Inbound[/b],iif([measures].[%Connects] > 0.50, 16711680 /*Blue*/, 255 /*Red*/)) // over 50% Inbound then Blue
Can this be done? If so how?!
Cheers
Neil