Hi All,
I have the below data in my multiprovider, which is combined from 2 cubes
MONTH | EMPID | SALES | TOTALSALES | Inforpovider |
---|---|---|---|---|
03.2015 | 123 | 4000 | 0 | C1 |
03.2015 | 124 | 5000 | 0 | C1 |
03.2015 | 100 | 100 | 0 | C1 |
03.2015 | # | 0 | 50000 | C2 |
I have to calculate the percentage sales for each employee for which I need to use the formula (SALES%TOTALSALES) . Is it possible for me to acheive the below somehow?
MONTH | EMPID | SALES | TOTALSALES | Inforpovider |
---|---|---|---|---|
03.2015 | 123 | 4000 | 50000 | C1 |
03.2015 | 124 | 5000 | 50000 | C1 |
03.2015 | 100 | 100 | 50000 | C1 |
03.2015 | # | 0 | 50000 | C2 |
I dont want to do the changes at the backend and want to achieve this repition of Key figure value at report level. I have already tried to use the Aggregation for TOTALSALES as MAXIMUM, which gives me the above , however the formula (SALES%TOTALSALES) still treats the value of TOTALSALES as 0 at each row.
Regards,
Manpreet