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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
davyqliks
Specialist
Specialist

Please help me to separate returned results in text object

I use this

=Concat (Distinct Item_Code)

and get results in a string of text. I require a delimiter to separate the results

i get this

item1item2ite

m3

i require

item1

item2

item3

Thank you in adnvance

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=Concat(Distinct Item_Code, Chr(10))

View solution in original post

3 Replies
sunny_talwar

Try this:

=Concat(Distinct Item_Code, Chr(10))

davyqliks
Specialist
Specialist
Author

Sunny T strikes again.

Thank you so much Sunny.

krishnacbe
Partner - Specialist III
Partner - Specialist III

or you can use below

=Concat(Distinct Item_Code, '|')