Skip to main content

If Else

Description

This activity is a conditional or branching statement that executes different statements/branches depending on whether an expression is true or false. It contains a condition, a Then branch, and an optional Else branch. The Condition field must contain a Boolean expression according to which executes the Then or the Else branch. If the condition is true, perform the Then branch activities. It performs the optional Else branch activities if the condition is false. Refer to Office Documentation

Properties

Misc

  • Condition – It executes the child activity based on the specified conditions. "Then" activity is executed if the condition resolves to true. "Else" activity is executed if the Condition resolves to false.
  • DisplayName – Add a display name to your activity.
  • Private – By default, activity will log the values of your properties inside your workflow. If private is selected, then it stops logging.

Example

Download Example

If Loop Example