Select to view content in your preferred language

select_multiple implementation

475
2
Jump to solution
11-20-2023 01:42 PM
LingBennett
New Contributor

Hi all, I'm confused how to properly use the "select_multiple" option in S123. I have a select multiple survey question:

QAQC Sample Type.PNG

 

I want any answers that are checked by the user to be displayed in the survey report. I'm confused what the correct syntax is for displaying answers to select multiple questions. The answer name for my survey question is "qaqc_sample_type". I have tried many different things including the following:

- ${select_multiple qaqc_sample_type}

- ${select_multiple qaqc_sample_type | appearance: "bullets"}

- ${if(qaqc_sample_type | getValue:"count")>=1} ${/}

 

I keep receiving either an invalid or parsing error no matter what I try. Any help would be appreciated thanks!

0 Kudos
1 Solution

Accepted Solutions
abureaux
MVP Frequent Contributor

For a Feature Report, try the following...

Display the select_multiple as a comma separated list:
${qaqc_sample_type}

Display the select_multiple as a bullet list:
${qaqc_sample_type | appearance:"bullets"}

View solution in original post

2 Replies
abureaux
MVP Frequent Contributor

For a Feature Report, try the following...

Display the select_multiple as a comma separated list:
${qaqc_sample_type}

Display the select_multiple as a bullet list:
${qaqc_sample_type | appearance:"bullets"}

LingBennett
New Contributor

Thank you!

0 Kudos