OK, thank you so much! I'm going to read your posts and see if I can figure out making it work on my project. Interesting that I used apple, pear, banana and grapes for my test choices
I tried to make this work, to no avail so far. The multi-checkbox field I'm trying to call is company.Comments. I modified your suggested script as follows, created an email script token, and pulled it into my response email. So far, nothing at all displays (neither my selected choices, nor the "You checked off..." text) after I fill out the form and receive the response email. Here's what I'm using:
#set( $singleInterests = $company.Comments.split(";") )
#if( $singleInterests.size() )
You checked off the following interests:
#foreach( $singleInterest in $singleInterests )
${singleInterest}
#end
#end
I'm not clear on how $singleInterest is being defined, as opposed to it's plural version. Am I missing something there, do you think?
You're right, this is heading into the category of programming 