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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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.....