Skip to main content
Nintex Community Menu Bar

One panel need to be show/hide based on multiple selections

  • September 8, 2019
  • 2 replies
  • 20 views

Forum|alt.badge.img+4

One panel need to be show/hide based on selections " Type", if select "New", "Remove", " And" show, selection other one, two, three hide. I applied rule ChangeType!='New' or not (contains(Type, "New")), it works for " New" only, then I applied 2nd rule ChangeType! ='Remove', both New and Remove not working, I tried to use or(ChangeType!='New'||
ChangeType!='Remove'), also not woking, still need 3rd selections?

2 replies

Forum|alt.badge.img+4
  • Author
  • September 8, 2019

single rule below works

ChangeType!='Remove'

But added OR not working

ChangeType!='New' || ChangeType!='Remove' || ChangeType!='And'

Is there anything wrong?


Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • September 8, 2019

Hi,

You can do this one of two ways.

You can use multiple rules on the one panel or one rule on the panel.

 

Create 3 rules.  One for selection "One" One for "Two".......

equals(ChangeType,"One"),

 

The one rule option looks like:

or(or(equals(ChangeType,"One"),equals(ChangeType,"Two")),equals(ChangeType,"Three"))

This will hide the panel when you select One,Two or Three.

 

I have attached sample classic forms that you can import and test.