Workflow if condition with 2 outcomes.
Can an if condition in workflow split the workflow in 2 branches so different steps to follow?
4 Replies
Yes you can use workflows branches following a filter
maybe i am missing how to know which branch is the true and which the false?


you need to add another filter with the "else" condition
trigger
-> filter 1 condition -> update-record 1
-> filter 2 !condition -> update-record 2
filter is a on/off step, it does not execute its children if condition is not met
so filter is inside the branch
and only to confirm the case
of it is also possibility thx