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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating variables

How would I go about concatenating fields?

let a='a';

let b='b';

let c='c';

What's the equivalent for this?

let d=$(a)+$(b)+$(c); --??

let d=$(a)&$(b)&$(c); --??

Expected value for "d":

abc


Thanks!

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Hi,

I think you want to use:

let d=$(a)&$(b)&$(c);

if I understood your question correctly..

Have fun,

Stefan

View solution in original post

2 Replies
swuehl
Champion III
Champion III

Hi,

I think you want to use:

let d=$(a)&$(b)&$(c);

if I understood your question correctly..

Have fun,

Stefan

Not applicable
Author

Works likes charm! Thanks, Stefan!