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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Variables in script

I have a problem with declaring my variable in a load script.

Leeftijd_Map:
Mapping LOAD
$(#CurrentMTO)&'#'&`antwoord_waarde` as antwoord1,
antwoord as AntwoordLeeftijd;
SQL SELECT *
FROM $(CurrentMTO).`antwoord_type` WHERE `antwoord_type_nr` = 5;

What is the right way to declare on the third row.

$(#CurrentMTO)&'#'&`antwoord_waarde` as antwoord1,

Allready thanks a lot.

Greetz,

Dirk

1 Solution

Accepted Solutions
dirk_konings
Creator III
Creator III

'$(#CurrentMTO)' & '#' & `antwoord_waarde` as antwoord1

View solution in original post

2 Replies
dirk_konings
Creator III
Creator III

'$(#CurrentMTO)' & '#' & `antwoord_waarde` as antwoord1

Not applicable
Author

Thanks for the help

I allready found one solution how it works.

'$(CurrentMTO1)#'&`antwoord_waarde` as antwoord1,



Greetz,

Dirk