Skip to main content
Nintex Community Menu Bar

Nintex Forms Rules Referencing Choice Control Options Not Properly Responding

  • March 26, 2021
  • 0 replies
  • 95 views

butlerj
Nintex Employee
Forum|alt.badge.img+20

Issue

When using Nintex Forms Choice Control and creating rules that reference the choices, the rules do not properly respond when editing the form.

 

Resolution

Ensure that the choice reference in the associated rule is the exact same string as the choice options listed in the control.

 

 

Additional Information

Choices: Sales, Marketing, IT, Support
- Notice that there is a space after every comma, thus the rule needs to be written with the white space.

Condition != 'Sales'
Condition != ' Marketing'
Condition != ' IT'
Condition != ' Support'

Choices: Sales,Marketing,IT,Support
-Alternatively this is how rules should look with no white space in the choice control.

Condition != 'Sales'
Condition != 'Marketing'
Condition != 'IT'
Condition != 'Support'