Skip to main content
Nintex Community Menu Bar

More Conditions in Choice for Nintex forms

  • September 24, 2018
  • 1 reply
  • 5 views

Forum|alt.badge.img

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

Forum|alt.badge.img+14
  • Scholar
  • September 25, 2018

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()