Logic

AndOr

Combines two true/false results into one: both must hold (And), at least one must hold (Or), exactly one (Xor), or flip a single result (Not). Use it to chain several Compare checks into a single rule before an If node acts on it.

Inputs

InputAcceptsRequired
AYes/NoYes
BYes/NoOptional
OperationTextOptional

Outputs

OutputProduces
ResultYes/No

Settings

Typed in on the node or set by the assistant, not wired.

SettingDefaultNotes
OperationAndOne of And, Or, Xor, Not. Not flips input A and ignores B.

Example

A deal only counts as "quality revenue" when it is both large and profitable. One Compare checks Amount >= 250000, another checks the gross margin is above 0.30. Connect both results to an AndOr set to And; the combined answer drives an If node that labels the deal "Quality" or "Review".

Related nodes