Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Problem with the List boxes selection

Hi Geniuses,

I have two month list boxes which are unrelated to each other what I want to achieve is that when I select Multiple months in one listbox then the same will get selected in the other list box.

For single month selection we can do getfieldselection() but it is not taking the multiple months

If we have no spaces in between months we can use  = '(' & getfieldselections(CustomerMonth,'|') & ')' and it will do the need but my problem is now not months my problem is business units where you have a space in between

Attached is the sample qvw for your reference

Thanks in advance

1 Solution

Accepted Solutions
sunny_talwar

Try this definition:

Field

SalesMonth

Search String

= '("' & GetFieldSelections(CustomerMonth,'"|"') & '")'

View solution in original post

2 Replies
sunny_talwar

Try this definition:

Field

SalesMonth

Search String

= '("' & GetFieldSelections(CustomerMonth,'"|"') & '")'

Anonymous
Not applicable
Author

Thanks for the help mate