A condition is a step in the flow that evaluates a statement as either true or false. If the statement is true, then the flow will follow the left-hand path; otherwise, the flow will branch to the right-hand path, as shown in the following diagram. A condition performs if-then-else logic. You can refer to the following screenshot for a better understanding:
With a condition, you can compare two items. An item could be output from previous steps that you add in with dynamic content, or a constant value that you have typed in, or a result of an expression.
If the result of the condition is true, then the flow follows the If yes path. If false, the flow follows the If no path. You can add steps to either of the yes/no paths.
If you need more than two paths, then consider the Switch action. A condition has two yes and no branches; the Switch action supports...