Hi, You can achieve this with multiple conditions in the if/else
statement. For example:Where more than one chackbox has to be ticked AND
the dropdown has a value "The required selection": if (Sum(Checkbox1,
Checkbox2, Checkbox3, Checkbox4) ge 1 and DropDown1 eq "The required
selection") then $.presence = "visible"else $.presence =
"hidden"endifAlternatively, where more than one chackbox has to be
ticked OR the dropdown has a value "The required selection": if
(Sum(Checkbox1, Checkbox2, Checkbox...