Skip to main content
Nintex Community Menu Bar

Rule to hide Panel

  • August 5, 2019
  • 2 replies
  • 9 views

Forum|alt.badge.img+1

Afternoon all,

I need some help. I am trying to create a rule that will hide a panel until any selection is made from a list lookup. I have named the panel "ShowQuestion1" and the list lookup name is "Fourth Contact Reason". I thought that by using the rule; not(isNullOrEmpty(Fourth Contact Reason) would get this to work but upon previewing, the panel remains constantly there even when making a selction in the list lookup.

Thank you in advance to help given

2 replies

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • August 6, 2019
Hi,
My testing is showing that the rule "isNullOrEmpty(Fourth Contact Reason)" applied to the panel will work.

The rule says, if there is no entry in the Lookup then hide the Panel.
Haveing a Not() before this reverses the outcome so when you select something the panel would have hid instead.

Forum|alt.badge.img+1
  • Author
  • August 6, 2019
Thanks Simon. Perfect