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

Show specific Values in chart on click of Multi Box

Hi Friends can any one help on displaying Charts on selection of Values in Multi Box.

I have a Multi Box with Region Name values in it are"CHN,IND,US,UK".I need to display a pie chart on selection of US in Multi box as separate chart and on selection of rest of countries a separate Pie chart show except US data.

How to achieve this keeping two pie charts and based on selactions Pie chart should display?Please do needful excepting a good solution.Attaching a Test.qvw

Thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

to show only US  or containing US

use SubStringCount(Concat([Region Nm],'|'),'US')

and for any except US use below condition

not(SubStringCount(Concat([Region Nm],'|'),'US'))

View solution in original post

1 Reply
Anonymous
Not applicable
Author

to show only US  or containing US

use SubStringCount(Concat([Region Nm],'|'),'US')

and for any except US use below condition

not(SubStringCount(Concat([Region Nm],'|'),'US'))