Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
In my stacked bar chart dimension, I have MonthYear and Client, and in expression, I show % VOLUME per client per month:
sum(VOLUME)/sum(TOTAL <MonthYear> VOLUME)
Now, there are 50+ clients. I want to show just a select few clients of my own choosing. Selecting those clients changes the % values completely. Is there a way to preserve the value of sum(TOTAL <MonthYear> VOLUME) when selecting clients?
sum({<ClientField= >} TOTAL <MonthYear> VOLUME)
sum({<ClientField= >} TOTAL <MonthYear> VOLUME)
Thanks - I was trying to put that set after TOTAL instead of before. Also, the legend of the bar chart still shows all 50+ clients. Is there a way to change the legend to just my client selections?
I can't reproduce your issue with the legend.
Could you post a small sample QVW that demonstrates this?
Actually I restricted the legend by doing dimension limits on "Show only largest 11 clients", which worked. Thanks!