Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
kailashkotak91
Contributor III
Contributor III

Passing parameter value via variable to a URL

Hello Qlik Experts,

 

I want to pass the value of a variable to the URL. For example this is my URL

 

http://etltool?uri=%2list%sysparm_query%sys_idis"I NEED MY VARIABLE HERE AS IT IS A DYNAMIC VALUE BASED ON A SELECTION"%query%true

Is this possible with QLikView

3 Replies
Anil_Babu_Samineni

Perhaps this way?

SET Variable = 'http://etltool?uri=%2list%sysparm_'

SET Variable1 = '%sys_idis';

LET Dynamic = GetFieldSelections(FieldName);

LET Final_Dynamic = $(Variable) & $(Dynamic) & $(Variables1);

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
kailashkotak91
Contributor III
Contributor III
Author

Okay! Do I need to do this in my load script ? Once the SET and LET commands are done how can I create a button or a column in the table to navigate to the URL ?

Thanks a ton
mydearleo
Contributor II
Contributor II

i think you can either use an custom extension, or use the table object, and combine string to make URLs, you can also mask the url with particular captions.