image.png

Inputs

Name Abbreviation Type Access Description
Condition C Boolean Item The condition to match
Value A a Any Item The item to choose from if the condition is true
Value B b Any Item The item to choose from if the condition is false

Outputs

Name Abbreviation Type Access Description
Result R Any Item The chosen item

How-to

  1. Feed in a Boolean condition (true/false)

    This can be a Boolean node, or the result of a node such as equals, greater than, or an Input Parameter with the Boolean type.

    You can also “hard code’ the boolean condition with the toggle on the node itself. This will make the result always true or always false if you use this method.

  2. Define the “true” condition

    Connect to the A input

  3. Define the “false” condition

    Connect to the B input

  4. The output value will change between A or B based on meeting the boolean conditional.

A ternary condition testing if the area is greater than 200000sf

A ternary condition testing if the area is greater than 200000sf

The result

The result

See Build your First Flow for a Ternary If example!