cancel
Showing results for 
Search instead for 
Did you mean: 

Convert collection to a text string separated by ( ; )

FatimaAlcaraz
Level 4
I have a collection of data and I need to get those values but in this format. Example: 000123;000235;000654...
I need a (;) between each value, since that's the only way they'll work for me.
Attached is the capture of the collection obtained.

36518.png
I would be grateful if you could tell me how I could obtain the result that I need.
1 BEST ANSWER

Best Answers

Hi Fatima,

You can use below expression in calculate stage within the loop to get the desired output.



[Final String]&[Collection.Column 0]&";"    and store the result in [Final String]

View answer in original post

2 REPLIES 2

Hi Fatima,

You can use below expression in calculate stage within the loop to get the desired output.



[Final String]&[Collection.Column 0]&";"    and store the result in [Final String]

FatimaAlcaraz
Level 4
Thank you very much for helping me solve my problem!