Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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.

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.