How can I limit selection to only three options besides limiting none and no answer?

Great!! How can I limit selection to only three options besides limiting none and no answer?

Welcome back to the community, @Bertha! This post discussed previously should help you solve your issue:

If I get it right you want to limit to max. 3 options but only if “none” or “no answer” have not been selected, right? Then you have to extend the constraint to something like this:

not(selected(., ‘none’) and count-selected(.) >1 or selected(., ‘na’) and count-selected(.) >1 ) and not(count-selected(.) >2)

SNIPPET_MC_Constraint.xlsx (9.0 KB)

In this sample case the selection is limited to two options, except if “none” or “no answer” is chosen. If one of these options is selected, no additional options can be selected.

1 Like

@DSimon, :bowing_man: :tada: