The number of options selected on a multiple choice survey question.
<checkboxes> <dropdown> <listbox> <radioButtons>
optionitem.name.selectedCount
Read Only
integer
The number of options selected on a multiple choice survey question. This is especially useful for checkbox questions which permit multiple options to be selected.
The following displays the number of selected checkbox options in a text stimulus:
<text myText>
/ items= ("selectedCount = <% checkboxes.foo.selectedCount %>")
</text>
The following displays the number of selected listbox options in an instruction page:
<page myPage>
selectedCount = <% listbox.bar.selectedCount %>
</page>