More Conditions in Choice for Nintex forms

  • 24 September 2018
  • 1 reply
  • 2 views

Badge

I have one forms and i need hide one choice for group, i'm use this following condition:

fn-Not(fn-IsMemberOfGroup("name of group"))

But i need use a condition "fn-or" for more group. But always have returns True, even if the user is not in the group. follows the condition used:

fn-Or(fn-Not(fn-IsMemberOfGroup("name of group")),fn-Not(fn-IsMemberOfGroup("name of group")))

I would like to know which error of the condition used above.

Best Regards,

Leo


1 reply

Userlevel 5
Badge +14

you formula evaluates to FALSE only if the user is member of both groups.

if you want to hide choice control if the user appears in either of the groups then use fn-And() instead of fn-Or()

Reply