Hello, Seems like this should be simple, but can't find anything that helps.
I have a form with three fields: Field 1, Field 2, Field 3. Field 1 is a dropdown list/combo box with values "A" and "B" as options.
Rule: If Value "A" is selected in in Field 1, then Field 2 must become required and Field 3 must become not-required (optional).
If value "B" is selected in Field 1, then Field 3 must become required, and Field 2 must become not-required/optional.
I was poking around with the following, to no avail. I'm obviously barking up the wrong tree.
If [Field 1] = "A" Then
[Field 2].Properties.required = true
Else: [Field 2].Properties.Required =false
I'm trying to work something into the On Current Event on the form.
Thanks for any insight.
I have a form with three fields: Field 1, Field 2, Field 3. Field 1 is a dropdown list/combo box with values "A" and "B" as options.
Rule: If Value "A" is selected in in Field 1, then Field 2 must become required and Field 3 must become not-required (optional).
If value "B" is selected in Field 1, then Field 3 must become required, and Field 2 must become not-required/optional.
I was poking around with the following, to no avail. I'm obviously barking up the wrong tree.
If [Field 1] = "A" Then
[Field 2].Properties.required = true
Else: [Field 2].Properties.Required =false
I'm trying to work something into the On Current Event on the form.
Thanks for any insight.
Last edited: