If

Overview


This block is used to specify conditions. Once they are met (or unmet), a corresponding action can be taken with the help of other blocks.


The If block doesn’t do anything by itself. It’s used to determine certain actions you want taken if a condition is fulfilled (true).

Unfulfilled conditions force the program to ignore actions below the If line and check if you’ve specified actions below the Else line.

If you haven't, nothing will be executed.

Drag and drop If inside a workflow where a green field appears. Doing so makes it a part of the workflow.

Procedure:

  1. Place If where you want to require a condition;

  2. Enter a Condition in the provided field of the If block;

  3. Include actions below the If section;

  4. Include actions below the Else section if necessary;

  5. Run the workflow to see the effect applied.

The resulting structure will execute whatever actions you have included in the If section when the condition of the If block is satisfied.
Alternatively, it will execute the actions you have included in the Else section when the condition is not satisfied.

To disable the If block without deleting it, use the slider on the left of its name.