Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
in a grid chart, I've got calculated dimensions:
- aggr(sum(mysales),account.code)
- aggr(sum(mysales),account.code) / aggr(sum(allsales),account.code)
My expression is simply "account.code".
This works fine for me when no selection is made; the problem comes when an account code is selected: all excluded accounts disappear. My objective is to use a kind of a set analysis maybe to keep all accounts (other solutions are welcome of course).
Thanks in advance for your help,
Marwen
You might also need the same thing in your dimension:
- aggr(sum({<account.code>}mysales),account.code)
- aggr(sum({<account.code>}mysales),account.code) / aggr(sum({<account.code>}allsales),account.code)
Try this:
Only({<account.code>} account.code)
You might also need the same thing in your dimension:
- aggr(sum({<account.code>}mysales),account.code)
- aggr(sum({<account.code>}mysales),account.code) / aggr(sum({<account.code>}allsales),account.code)