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

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 ,