Hi All,
I have a webi report with the fields as below and at the bottom of the report, I am trying to sum the amount it gives me multivalue or double the number.
Status | Amount | ID NUmber | Description | Station |
A | 3,037.44 | 578 | Light | X157 |
E | 3,899.68 | 579 | Light | X157 |
Sum of Amount | #MULTIVALUE |
For sum of amount I am using formula as: =(If([Status Id]="E" ;Sum([Payment Amount]);0)) this gives a multivalue error. If I use formula as :
=Sum(If([Status Id]="E" ;Sum([Payment Amount]);0)); this gives number as 69,371.2. I am expecting to see 3899.68 since that is the number for Status=E.
If I use =Max(If([Status Id]="E" ;Sum([Payment Amount]);0)) it gives the number as 6937.12 which is sum of both the 3037.44 and 3899.68, which is incorrect.
Please help where I am going wrong.
Thanks,
Nisha