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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

When I load the data is there someway I can merge the columns and separate them with a delimiter?

When I load the data is there someway I can merge the columns and separate them with a delimiter?  I would like to search the data inside of one list so the "or" statement applies.

1 Solution

Accepted Solutions
Not applicable
Author

Load

Column1 &  '|' & Column2 as MegedColumn

View solution in original post

7 Replies
Not applicable
Author

Load

Column1 &  '|' & Column2 as MegedColumn

Not applicable
Author

You can use Concat function on script and use a delimiter, Not sure if this is what you are looking for.

Not applicable
Author

Can I concat the data into one list without a delimiter?

Not applicable
Author

yes

Load

Column1 & Column2 as MegedColumn

Not applicable
Author

I did this in the LOAD script and "|" was not recognized

Not applicable
Author

How can I insert an delimiter?

data & "|" & data    didn't work

MarcoWedel

use single quotes for string constants:

data1 & '|' & data2