Skip to main content
Nintex Community Menu Bar

Show fields based on multiple criteria

  • April 29, 2019
  • 4 replies
  • 25 views

Forum|alt.badge.img+1

Hi,

 

I am trying to figure out how i can hide/show fields based on a click button (Yes/No). I have been able to hide a field based on 2 named controls;

 

i.e. not(or(Type1,Type2)) this works well, although i need to do it for 4 selections rather than 2.


4 replies

cabeza
Forum|alt.badge.img+3
  • Novice
  • April 29, 2019

why dont you use the OR symbole ||

so it will be Type1||typr2||type3||type4


Forum|alt.badge.img+1
  • Author
  • April 29, 2019
it did not work. Tried as you mentioned.

Forum|alt.badge.img+14
  • Scholar
  • April 29, 2019

following formulas should work

 

with use of nintex runtime functions

not(or(or(or(Type1,Type2),Type3),Type4))

with use of javascript or operator

not(Type1 || Type2 || Type3 || Type4)

Forum|alt.badge.img+1
  • Author
  • April 29, 2019

Thats worked, thank you very much.