22-10-24 08:44 AM
Hi,
Is there any way to add data to a text data item line by line? I need to add data from a collection column into a single text data item in the below format. Is there any option to append line breaks or any other methods available to achieve this?
ABC
DEF
GHI
JKL
Thanks,
Dipin Dev P
Answered! Go to Answer.
22-10-24 09:20 AM
Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]
Alternatively use Chr(13) & Chr(10) for CRLF
22-10-24 09:20 AM
Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]
Alternatively use Chr(13) & Chr(10) for CRLF
22-10-24 10:07 AM
Thanks @John__Carter NewLine() worked well.