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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
rohitians
Creator III
Creator III

Display of alternate chart based on selection??

Hello Everyone,

I have a requirement where in i have two combo charts....but i want to display only one combo chart based on selection in list box.......if selection is A in list box then only one combo chart should only be visible...

Thanks and Regards,

Rohit

1 Solution

Accepted Solutions
sushil353
Master II
Master II

Hi Rohit,

Open chart property

Goto Layout tab> show conditional>

if(getfieldselections(listbox)='A',1,0)

here change the listbox with your field name .. when ever you make selection in that listbox with A.. it will show the chart other wise not.

HTH

Sushil

View solution in original post

2 Replies
sushil353
Master II
Master II

Hi Rohit,

Open chart property

Goto Layout tab> show conditional>

if(getfieldselections(listbox)='A',1,0)

here change the listbox with your field name .. when ever you make selection in that listbox with A.. it will show the chart other wise not.

HTH

Sushil

rohitians
Creator III
Creator III
Author

Thank you, Sushil