Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table that contains an amount of sold items, in another table the unit for the sold items are located, they are connected with a field for salesman,
If I make a chart it will be displayed like this:
| Salesman | Amount | Unit |
|---|---|---|
| Mr A | 100Volvo | |
| Mr A | 100BMW |
Is there a way with set analysis to make it display as this?
| Salesman | Amount(Volvo) | Amount(BMW) |
|---|---|---|
| Mr A | 100100 |
use a pivot table with dimension Salesman and Amount, and expression sum(Unit)
HI Henrik,
you would use a pivot chart:

See the attached simple example
HTH Andy