Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change chart dimensions when multibox value selected

I have a normal bar chart for which I want to use the same expression regardless of dimensions, however I want the chart to use the dimension(s) that have been selected from a multi box by the user, e.g. one dimension may be margin and the other month initially, but if the user wanted to see profit/month they could select profit from the multi box and the chart would update to show this.

Many thanks,

T

4 Replies
Anonymous
Not applicable
Author

Did you check this?

Adhoc reporting in Qlikview

Ad-Hoc Reporting in Qlikview

Adhoc reports are for same feature for what you are looking for..

sasikanth
Master
Master

HI,

Condition enabling will help you on this ,

First add both the dimension in chart and enable them based on condition like

if(GetselectedCount(margin)>0,1,0)

if(getselectedCount(Month)>0,1,0)

If you want to show any dimension by default then disable this condition for that dimension

Not applicable
Author

You can store the select value in a variable and use this variable as dimention. (Adhoc Reportig)