String Variable

0
Could you please assist me in concatenating a list of actions from Mendix into a single string with line breaks between each action? I've attached a microflow below for reference. Microflow: Please let me know if there are any specific steps or approaches I can take to achieve this.  
asked
2 answers
0

Hi matthew,

try this ‘<br/>’

answered
1

If it's just adding a newline in there, you can change your Change Variable Action to something like this.

 

$CurrentAction + '
' + $ActionName

 

I hope this helps.

answered