Add Segment

ashwin E1

Active Member
Hi I'm using "Add segment" system function to add some variable text in a Group box inside a power form. The challenge I'm having is, there are multiple Add segments used by me and every segment just continues one after the other, but I want these segments in next new line and also I'm not sure how many segments might be required as I'm using Add segment inside a while loop. Is there a way to solve this or is there a workaround, I mean instead of using Add Segment.
 
This may be considered kind of a hack but if you embed an html line break <br> it should work. As in:

Code:
This is my segment<br>
This is my next segment<br>

It should display:

This is my segment
This is my next segment
 
Back
Top