Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Ho to achieve this in Pivot Table with Aggr Function ?
| Customer | Jan | Jan % |
|---|---|---|
| A | 50 | 50% |
| B | 10 | 10% |
| C | 20 | 20 % |
| D | 20 | 20 % |
| 100 | 100 % |
Try this:
Sum(Measure)/Sum(TOTAL <Customer> Measure)
or
Sum(Measure)/Sum(TOTAL <Month> Measure)
=column(2)/100 and tick on Show in %
May be this:
Sum(Measure)/Sum(TOTAL Measure)
This is not working in case of Multiple Months. Because Total will take the Jan & Feb Total.
Try this:
Sum(Measure)/Sum(TOTAL <Customer> Measure)
or
Sum(Measure)/Sum(TOTAL <Month> Measure)