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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
demoustier
Creator
Creator

field value concatenation

Good day QViewer !

I have a list of unique value:

F1

a

b

c

d

e

f

....

and i'd like to have a unique value = "a"|"b"|"c"|"..."

I tried with previous, Peek, loop,....without any success.

If somebody have an idea.....

Kind regards

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try concat(chr(34) & F1  & chr(34), '|')

Example:

LOAD concat(chr(34) & F1  & chr(34), '|') AS List INLINE [

F1

a

b

c

d

e

f

];


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try concat(chr(34) & F1  & chr(34), '|')

Example:

LOAD concat(chr(34) & F1  & chr(34), '|') AS List INLINE [

F1

a

b

c

d

e

f

];


talk is cheap, supply exceeds demand
Anonymous
Not applicable

You can use concat:

chr(34) & concat(distinct F1, chr(34) &'|' & chr(34)) & chr(34)

demoustier
Creator
Creator
Author

Magique !!!!!

Thank you very much !!!!!!!!!!!!!!

PS: now, i have to spend some time to understand this formula