Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Perhaps this way?
SET Variable = 'http://etltool?uri=%2list%sysparm_'
SET Variable1 = '%sys_idis';
LET Dynamic = GetFieldSelections(FieldName);
LET Final_Dynamic = $(Variable) & $(Dynamic) & $(Variables1);
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.