Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
janardhan
Creator
Creator

concatenating

Hi ,

i need to concatenate two columns in the same table.

Can u pls explain...

eg: Sector table:

      a ,

      b,

      c,

      d

like this...

i need to display as a+b value in single column

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi Janardhan,

LOAD

     ColumnA,

     ColumnB,

     ColumnA & ColumnB AS ConcatenatedColumn

FROM DataSource;

Hope this what you are expecting, if not explain with an example.

Regards,

jagan.

View solution in original post

2 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi Janardhan,

LOAD

     ColumnA,

     ColumnB,

     ColumnA & ColumnB AS ConcatenatedColumn

FROM DataSource;

Hope this what you are expecting, if not explain with an example.

Regards,

jagan.

janardhan
Creator
Creator
Author

thanks jagan.....