Skip to main content

I have a form with the below fields:

field 1: Org (choice): Internal, External

field 2: Internal (choice and a hidden field based on field 1 selection)

field 3: External (choice and a hidden field based on field 1 selection of neighborhood, city, state, Other

field 4: Other (choice and a hidden field based on field 4)

 

I need to hide a panel with additional fields based on the below rules. Because ‘External’ and ‘Other’ are hidden fields, I am having difficulties in makng the rule work. Any assistance would greatly be appreciated:

Org == “External”

External == “Other”

Other == choice A || choice C || choice E

I was finally able to resolve it with this:

(OTHER=='choice A' || OTHER=='choice C' || OTHER=='choice E')


Reply