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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Passing Multiple Values

I am trying to pass values form one list box into another.  I searched and found some code that I am trying to use:  ='(' & Concat(<field>, '|') & ')'

When I place this code into my dashboard, it crashed QlikView.  I get the error:

Qlikview 9.00 SR5 has stopped working...... then QlikView closes.

Any ideas why this is occuring?

1 Solution

Accepted Solutions
Jason_Michaelides
Partner - Master II
Partner - Master II

Are there a large number of records? The thing to remember about Concat() is it doesn't return distinct value lists unless you tell it to. So your result may be huge!  Add in the Distinct qualifier:

='(' &amp; Concat(DISTINCT <field>,'|') &amp; ')'

Hope this helps,

Jason

View solution in original post

2 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Are there a large number of records? The thing to remember about Concat() is it doesn't return distinct value lists unless you tell it to. So your result may be huge!  Add in the Distinct qualifier:

='(' &amp; Concat(DISTINCT <field>,'|') &amp; ')'

Hope this helps,

Jason

Jason_Michaelides
Partner - Master II
Partner - Master II

Did you get this sorted?