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

Combining two columns into single column

Hi,

I want to combine two columns say firstname and lastname into single column as name.

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Try with

Load

firstname,

lastname,

firstname &' '& lastname as name

From Location;

Regards

Anand

View solution in original post

2 Replies
its_anandrjs
Champion III
Champion III

Try with

Load

firstname,

lastname,

firstname &' '& lastname as name

From Location;

Regards

Anand

Anonymous
Not applicable
Author

[firstname] & ' ' & [lastname] as Name ,