6/7

NOR: neither of two conditions

Medium

Flag a ticket for attention when it is neither assigned nor closed.

Build it from the gates you have. There is more than one correct way.

Inputs

  • ri!assigned — Boolean
  • ri!closed — Boolean

ri! Rule Inputs

ri!assignedBoolean
false
ri!closedBoolean
false

Example 1 — Neither

Input: ri!assigned
false
Input: ri!closed
false
Output:
true

Example 2 — Assigned only

Input: ri!assigned
true
Input: ri!closed
false
Output:
false

Example 3 — Closed only

Input: ri!assigned
false
Input: ri!closed
true
Output:
false

Example 4 — Both

Input: ri!assigned
true
Input: ri!closed
true
Output:
false

Appian Expression Tips

  • • Use ri!variableName for rule inputs
  • • Use a!localVariables(local!x: …, body) for locals
  • • Use a!forEach(items: …, expression: fv!item) to iterate
  • • Use where() / reject(fn!isnull, list) to filter