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.
Solved! Go to Solution.
why dont you use the OR symbole ||
so it will be Type1||typr2||type3||type4
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)
Thats worked, thank you very much.