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

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
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.