Using Html tags inside Create object activity Edit change item

0
Hello there, I have an activity of create object inside which I have selected a member having data type string which is getting printed in pdf and csv I want to include HTML tags like <br> so I can break the content of string at will.
asked
1 answers
0

If you want to break a string into lines you can just add a string with a newline character in it. For example

$Variable1 + '
' + $Variable2 + '
' + $Variable3

I hope this helps.

answered