Rules to hide a panel on a yes / no option


Badge +7

I have created a rule on a Nintex Form and I want to hide it when a tick box is equal to No

 

I have done this before and used the same format but it does not seem to work

 

I have the Named Control!="Yes" I have also tried taking out the yes to No and it still does not appear to work.

 

I want to hide the panel until they select Yes.

 

Thank you


2 replies

Userlevel 5
Badge +14

If the checkbox control in question is just a Yes/No Control, then it will evaluate to true when checked and false when not. 

 

That means your Formatting Rule can simply read:

!NamedControl

the "!" inverts the boolean value, and because Rules execute their Formatting or Validaiton when the results are true, this will take the Unchecked Box result (false) and flip it to true, making your Rule hide the Panel until the box is checked.

 

I hope this helps. 

Badge +7
Perfect thank you, it worked

Reply