3 weeks ago
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.
3 weeks ago
Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]
Alternatively use Chr(13) & Chr(10) for CRLF
3 weeks ago
Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]
Alternatively use Chr(13) & Chr(10) for CRLF
3 weeks ago
Thanks @John__Carter NewLine() worked well.