Skip to main content
Nintex Community Menu Bar

hide panel - parseLookup

  • May 17, 2019
  • 1 reply
  • 5 views

Forum|alt.badge.img+1

Hello,

 

i need to hide panel based on choice in list lookup. I want the panel to be visible just for a few(let's say "1" and "2") from many choices. I believe rule should look like:

 

or(parseLookup(LookupList)!="a", parseLookup(LookupList)!="b")

 

ofcourse it's not working...can you please advice?

 

1 reply

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

formula hides panel for whatever LookupList value. it would let it shown just in the case ListLookup would evaluate to both "a" and "b" at the same time, what's impossible.

 

I believe you wanted to write the formula like 

AND(parseLookup(LookupList)!="a", parseLookup(LookupList)!="b")