Notifications
Clear all
Topic starter
CPS12
I am trying to format the selections from a list box into a handout.
I would like the boxes checked in a form to read like this in the corresponding handout:
a
b
c
Currently the selections in the handout read a,b,c,
How can I format this to display correctly?
Thanks in Advance.
Posted : March 25, 2015 5:28 am
There is a MEL function called REPLACESTR(string, oldstr, newstr)
Not sure if it works in Handouts. Try this...
In the form
DOCUMENT.chked = "a,b,c"
In the Handout
{replacestr(DOCUMENT.chked,",",HRET)}
OR
{replacestr(DOCUMENT.chked,",","/n")}
- Beverly
Posted : March 25, 2015 6:22 am
Topic starter
I used the {replacestr(DOCUMENT.chked,",",HRET)}, worked great!
Thank you Beverly!
Posted : March 25, 2015 6:49 am