Branch on a Value
Sometimes a run should do one thing when a value looks a certain way and something else otherwise, such as only enrolling approved leads or routing high scores to a different step. You evaluate the condition, then route on it.
Nodes involved
- Check evaluates a condition and gives you a true-or-false result.
- Conditional sends the run down one path or another based on that result.
How to build it
Keep the condition simple and readable. If you find yourself testing several things at once, it is often clearer to use more than one Check.