Skip to main content
Nintex Community Menu Bar

Hide panel based on several selections, SharePoint 2013

  • May 8, 2020
  • 3 replies
  • 11 views

Forum|alt.badge.img+1

I have a drop down menu that I want to be the deciding factor to hide other panels. i have 2 issues that use the same questions,  I have been able to hide it based on one selection using:

Issue != 'Adobe Issue" and selecting the hide button. I also want it to hide if it's not 'Office Issue'. Every time I try and enter a variation of this formula it does not work. Thanks for the help ahead of time.

3 replies

Forum|alt.badge.img+1

I have also tried:

not(contains((Issue, 'Adobe Issue') (Issue, 'Office Issue')))

and

and(not(contains(Issue, "Adobe Issue")), not(contains(Issue, "Office Issue")))

But I get a note there is an error in my code.


Forum|alt.badge.img+12
  • Scholar
  • May 8, 2020

@Accountantguy ....use a calculated control and using If statement gets if it's a true or false value. You can set a rule on this calculated control to always hide. Then set a hidden rule on your panel if the value is true.


Forum|alt.badge.img+1

My other 2 issues were Data Loss and Case Mover, I solved it with this formula:  or(or(equals(Issue,"Case Mover"),equals(Issue,"Data Loss")))