Show fields based on multiple criteria

  • 29 April 2019
  • 4 replies
  • 3 views

Badge +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

Badge +3

why dont you use the OR symbole ||

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

Badge +1
it did not work. Tried as you mentioned.
Userlevel 5
Badge +14

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)
Badge +1

Thats worked, thank you very much.

Reply