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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
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.

Labels (1)
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 ,