Calculated measure average skewed by NULL data -
10-13-2006
, 11:26 AM
Hi,
Please can someone explain how I can get around this problem?
Score / Number of accounts
is not working as many Score values are NULL
The 'number of accounts' is including NULL score rows which is lowering the
score when looking at high level data within a pivot table.
I've tried all these and none of them work
1) IIF([Measures].[Number of Accounts] = 0,null,([Measures].[Behavioural
Score] / [Measures].[Number of Accounts]))
2) IIF([Measures].[Score Id] = 0,NULL,[Measures].[Behavioural
Score]/[Measures].[Number of Accounts])
3) ([Measures].[Behavioural Score]) / IIF(isempty([Measures].[Behavioural
Score]),0,1)
4) AVG({[Measures].[Behavioural Score]})
5) [Measures].[Behavioural Score] / [Measures].[Number of Accounts]
What am I doing wrong? |