Skip to main content
Nintex Community Menu Bar

Rules to hide a panel on a yes / no option

  • May 30, 2019
  • 2 replies
  • 84 views

Forum|alt.badge.img+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

MegaJerk
Forum|alt.badge.img+14
  • Scholar
  • May 30, 2019

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. 


Forum|alt.badge.img+7
  • Author
  • Novice
  • June 3, 2019
Perfect thank you, it worked