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— Booleanri!closed— Boolean
ri! Rule Inputs
ri!assignedBooleanfalse
ri!closedBooleanfalse
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!variableNamefor 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