Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Passing multiple parameters

Earlier, I had a requirement where there was just one parameter needs to be passed through a link.

So, I just appended the &Select=LB01(whatever the object ID is),Value

Now I need to pass two parameters. Not sure how is that possible. Would be great if some can throw an idea on this.

Note:

I have two List boxes (LB01 and LB02).

LB01 has values like, |A|AA|B|. The idea was to avoid selection of multiple values. Earlier it was A AA B (since qlikview detects every instance of A if I pass that value, I used '|' to eliminate space)

Eventually, my two list boxes has values like

Alphabet (LB01)
|A|AA|B|
|A|B|C|
|A|B|CD|

Number(LB02)
1
2
3

If I want to pass |A|B|C| from LB01 and 1 from LB02, how should my parameter look like ie., how to append both the values to the access point link?

1 Solution

Accepted Solutions
avinashelite

Hi

Try like this :

&Select=LB01,value1,value2,value3&Select=LB02,value1

View solution in original post

4 Replies
avinashelite

Hi

Try like this :

&Select=LB01,value1,value2,value3&Select=LB02,value1

avinashelite

it should be comma separated values and to make it unique to avoid multiple selection append a common key are value that use the same ..this should solve your issue  

Not applicable
Author

Not sure what is the exact requirement, you can try Document Chaining as well

Anonymous
Not applicable
Author

Thanks for the help. Just a curious question, Will this technique work for n number of objects? Can we keep on appending the objects and values like this?