Skip logic becomes advanced when a logic statement has multiple conditions. Add conditions using + Add condition. Each additional condition includes a condition-level operator: And or Or.
These operators work similarly to value-level operators but at a higher level. They join two conditions together rather than two values.
Condition-level operators follow order precedence: And has higher precedence than Or, meaning And conditions are grouped and evaluated first. Or acts as the separator between And groups.
For example, to skip respondents who are designers earning $80K–$99K in Utah, or designers earning $100K–$120K in California:
If (Occupation = "Designer" AND (Salary = "80-89K" OR "90-99K") AND Location = "Utah")
OR (Occupation = "Designer" AND (Salary = "100-109K" OR "110-119K") AND Location = "California")
The Or operator separates the two demographic groups, while And groups the conditions within each.