cancel
Showing results for 
Search instead for 
Did you mean: 

To add data line by line in a Text Data Item

DipinDevP
Level 5

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

1 BEST ANSWER

Helpful Answers

John__Carter
Staff
Staff

Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]

Alternatively use Chr(13) & Chr(10) for CRLF

View answer in original post

2 REPLIES 2

John__Carter
Staff
Staff

Try something like this in a loop [Data Item] & NewLine() & [Collection.Column]

Alternatively use Chr(13) & Chr(10) for CRLF

DipinDevP
Level 5

Thanks @John__Carter NewLine() worked well.