The allChecked
function takes an input from a checkbox question and a list of response options. It is a Boolean function that returns “true” if all of the response options are enabled (checked) for the specified question.
Syntax
allChecked(question ID, option IDs)
Example
Show follow up if all options checked
In the example below, if a respondent enables all of the response options for Q7, then allChecked($Q7,1,2,3,4)
returns “true” (the condition is met) and the respondent sees Q7B.
Tip! Instead of listing out all the option values that trigger the above showif
condition, SPs can instead list any consecutive option IDs like a series
input – e.g., allChecked($Q7,1..4)
.
Comments
0 comments
Please sign in to leave a comment.