How to make a string variable which line breaks are applied for Show Message purposes?

0
Hi colleagues,   I have this concern that I need to display a set of Transaction numbers in a Show Message prompt.  The problem is I can display the Transaction numbers horizontally instead vertically because I do not have an idea how to apply line breaks here.   I first make a string variable in which I loop the Transaction numbers I needed to display in the Show Message.  What I tried also is I put '<br>' at the end but still does not work.  In the Show Message, the <br> text itself is also displayed.   Hoping for any enlightenment on what to do.  Thanks! :)
asked
1 answers
0

You can add breaks during the concat of your string. Let's say you have a string variable called $Result

If you do a change variable and you want to add a value to the string with an enter you can do it as following:

 

$Result + ' 

' + $Object/toAddedStringInput

answered