Skip to main content
Nintex Community Menu Bar
Question

Allow NOT in model condition logic (i.e NOT(1 AND 2)

  • July 11, 2024
  • 1 reply
  • 16 views

Forum|alt.badge.img+3

Allow for the NOT operator in addition to AND and OR in Model Condition logic.  This would help greatly simplify some conditions where for example you need NOT(1 and 2).

1 reply

Forum|alt.badge.img+9

Please correct me if I’m wrong. But you should be able to get the desired condition by using the “!=” or “not in” operator within the conditions. e.g.

If I wanted to pull in data from opportunities using a model and not show any in the “Closed - Won” Stage and not have the Name “Acme” in it then I could create these 2 conditions and use the AND Operator

Condition 1
Field: Name
Operator: != (is not)
Value: Acme

Condition 2
Field: Stage
Operator: != (is not)
Value: “Closed - Won”

Condition Logic: 1 AND 2

Let me know if there’s a scenario that this doesn’t work for!