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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Jou data from two columns into one

Hi, I have a data base where the first name and the last name are in different columns. I need them in one column, can I join the information into a column directly from the script?

First_name    Last_name

xx                    yyy

And I need the information in one column:

Full_name

xx yyy

Thank you

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

Load First_name &' '&Last_name as Full_name ,* from tablename;

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

3 Replies
johnw
Champion III
Champion III

First_name & ' ' & Last_Name as Full_name,

MayilVahanan

HI

Try like this

Load First_name &' '&Last_name as Full_name ,* from tablename;

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Thank you