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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
mlarruda
Creator II
Creator II

Hi, how can I merge variables/colums?

Hi, I have one table with three columns/variables: FIRST_NAME, MIDDLE_NAME and LAST_NAME. How can I merge (with spaces between) to get a FULL NAME table?

1 Solution

Accepted Solutions
qlikwiz123
Creator III
Creator III

Maybe something like this?

FIRST_NAME & ' ' & MIDDLE_NAME & ' ' & LAST_NAME as FULL_NAME

View solution in original post

4 Replies
qlikwiz123
Creator III
Creator III

Maybe something like this?

FIRST_NAME & ' ' & MIDDLE_NAME & ' ' & LAST_NAME as FULL_NAME

mlarruda
Creator II
Creator II
Author

Thanks but where I type it? In the dimensions formula window?

mlarruda
Creator II
Creator II
Author

Worked! Thanks!

qlikwiz123
Creator III
Creator III

You can do it in the Script if you want to reuse this new Field in the model.

Or else, FIRST_NAME & ' ' & MIDDLE_NAME & ' ' & LAST_NAME in Dim or Exp should do the trick.