Skip to main content
Nintex Community Menu Bar

Nintex Form Rules...

  • February 26, 2020
  • 3 replies
  • 9 views

Forum|alt.badge.img+2

I apologize if this has been answered before. I found similar but not able to get anything to work.  I am trying to hide a panel in a form:  if both are true.  Fn-IsMemberOfGroup() and CreatedBy or Current user is not XXX.  I need to hide a panel for all members but one member of the group.

3 replies

Michel
Nintex Partner
Forum|alt.badge.img+7
  • Nintex Partner
  • February 27, 2020
Can you send me a screenshot of the current formula you are using at this point? It should be something like this;

or(and(fn-IsMemberOfGroup('GROUP'), Created by = Current User), not(Current User, USERX))

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • February 27, 2020

@Michel Just letting you know that the not() runtime function cannot be used in the middle of a function.

It should only be used to surround the whole function to reverse its outcome.

 

If a not is needed in the middle of a function the != operation will need to be used.

 

Your suggested function would then look like :

or(and(fn-IsMemberOfGroup('GROUP'), Created by == Current User), Current User != USERX)


Michel
Nintex Partner
Forum|alt.badge.img+7
  • Nintex Partner
  • February 28, 2020

Oh yeah, that is right! Thanks @SimonMuntz for the correction :)