How do i restrict multiple choice response to only 3 answers?
There actually an example of precisely this here: Form Operators and Functions - ODK Docs
Basically, you just need to use the count-selected()
function in a constraint. If you require exactly three responses then use ‘=’ in the constraint; if you want a maximum of three then use ‘<=’ instead.
2 Likes