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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Open URL using a query string with a variable

What I'm trying to do is use a button to open a URL that has a query string with a value that comes from an input box. I can get the URL part to work with a hard coded value in the query string, but if I use the input box variable, the variable name is used in the query string, not the variable's value.

Labels (1)
1 Solution

Accepted Solutions
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use the ='URl?QueryNAme=' & VariableName

e.q ='www.test.com?USERID=' & vUSerID

it will work.

View solution in original post

2 Replies
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use the ='URl?QueryNAme=' & VariableName

e.q ='www.test.com?USERID=' & vUSerID

it will work.

Not applicable
Author

Works! Thank You Manesh.