Skip to main content
Nintex Community Menu Bar
Solved

create a rule to disable yes/no control

  • September 15, 2017
  • 3 replies
  • 22 views

I have three yes/no control in my form that shows another control/panel when checked, now what I want to do is to make a rule that if one yes/no control is checked, the other two will be disabled. I am new to nintex forms and I have no idea on how to do this. Your help will be much appreciated. Thanks!

Best answer by lakshminarayana

You have to write each rule for each control.

For 'Checkbox 1' 

'CheckBox3' and 'CheckBox2' are checkbox control names.

Similarly for 'Checkbox 2' - CheckBox1 == 1 || CheckBox3 == 1 and

for 'Checkbox 3' - CheckBox1 == 1 || CheckBox2 == 1

3 replies

Forum|alt.badge.img+9
  • 222 replies
  • Answer
  • September 15, 2017

You have to write each rule for each control.

For 'Checkbox 1' 

'CheckBox3' and 'CheckBox2' are checkbox control names.

Similarly for 'Checkbox 2' - CheckBox1 == 1 || CheckBox3 == 1 and

for 'Checkbox 3' - CheckBox1 == 1 || CheckBox2 == 1


Forum|alt.badge.img+16
  • 898 replies
  • September 15, 2017

Do you mean disabled or unchecked?


  • Author
  • 23 replies
  • September 18, 2017

This worked for me. Thank you so much, Lakshmi C!