ssrs 2012 - MDX with IIF parameter -
i'm tyring discern amount based on parameter. have @clienttype defaulted 'c'.
with member [measures].[amount] iif( @clienttype ='c', [measures].[total client amount] , -[measures].[total client amount] )
regardless of changing @clienttype i'm still returning false.
try adding in these 2 measures inspect values:
with member [measures].[clnttypparam] @clienttype member [measures].[clnttypparamc] iif ( @clienttype = "c" ,"equaltoc" ,"notc" )
Comments
Post a Comment