Skip to main content
This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
October 5, 2016

Sure. You can use this code as the custom calculation script of the text field where you want to display the list (just adjust the name of the field to match yours):

var v = this.getField("List Box1").value;

if (typeof v=="object") event.value = v.join(", ");

else event.value = v;

thomasg3159840
Participant
October 5, 2016

I still didn't have any luck with having the selections to appear.  Forgive me, my knowledge of script and creating forms is lacking.  I've included screenshots of what my listbox currently looks like along with the script that I entered.  

try67
Community Expert
Community Expert
October 5, 2016

Read my reply above more carefully, please. I've described where you need to place the code.