Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
Hi
Try like this :
&Select=LB01,value1,value2,value3&Select=LB02,value1
Hi
Try like this :
&Select=LB01,value1,value2,value3&Select=LB02,value1
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 sure what is the exact requirement, you can try Document Chaining as well
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?