unfortunately, u can only do one OR condition, not a string of them.
but this should work:
HTML Code:
:@@IF@option1|option2@@option3|option4@MESSAGE@
r u sure ti doesn't? were u just missing the initial @ after the : ?
another way i've done this si by creating a contactentation of the list of options and testing that.
this works coz a checkbox field only gets a value when the check box is checked:
HTML Code:
<input type="checkbox" name="option1" value=1" />
<input type="checkbox" name="option2" value=1" />
<input type="checkbox" name="option3" value=1" />
<input type="checkbox" name="option4" value=1" />
then:
HTML Code:
<input type="hidden" name="derive_fields"
value="OptionTest=option1.option2.option3.option4" />
<input type="hidden" name="conditions1"
value=":@@TEST@OptionTest@MESSAGE@" />
Bookmarks