Avatar

Level 10

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"

endif

Alternatively,  where more than one chackbox has to be ticked OR the dropdown has a value "The required selection":

if (Sum(Checkbox1, Checkbox2, Checkbox3, Checkbox4) ge 1 or DropDown1 eq "The required selection") then

   $.presence = "visible"

else

   $.presence = "hidden"

endif

You can also use nested if/else statements if the combinations of checkboxes/dropdowns is more complex.

Hope that helps,

Niall