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

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -