Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatination of columns

Hi All,

I need to concatenate two columns(say A and B).

As in make another field(say C) which displays both A and B in horizantal allignment

Please let me know the solution(s).

Thanks in advance

1 Solution

Accepted Solutions
Not applicable
Author

hi

try

A & B as newfield

View solution in original post

6 Replies
Not applicable
Author

hi

try

A & B as newfield

maxgro
MVP
MVP

in script

load

     A,

     B,

     A & ' ' & B as C,

     ......

from

     ....

ashfaq_haseeb
Champion III
Champion III

Hi

try

A & '_' & B as C,


Regards

ASHFAQ

Not applicable
Author

in script

load

     A,

     B,

     A & ' ' & B as C,

     ......

from

     ....

Not applicable
Author

Load A,

         B,

         A & '-'& B as new Field

from

table name;

Not applicable
Author

Hello Depak,

you can add the script like this

TableName:

Load fieldA & fieldB as fieldC

from datasource;

Regards

Charitha.