Value limitation

I would like to know if there is any way to limit the options of a multiple choice question?

I have a question with 7 options, but I should only mark 2 options maximum for each submission, I have already had errors with this and I cannot find a solution.

Thank you

1 Like

make a hidden calculation
in that calculation, use if(count-selected(yourquestion) > 2, false()true())
put that hidden calculation as a validation condition for your multiple choice question

By multiple choice, I am assuming you mean checkbox question which is multi-select. If yes, then it is very simple. You need to add this count-selected(.) <= 2 validation condition.
The above condition will count your selections and will let you select 2 or less than 2 options.
Hope this helps.