IfElse Process (Node)

  • The If/Else feature controls the execution flow of your workflow based on specific conditions.

  • If the specified condition is True, the workflow follows the 'true' path to the next step; if False, it follows the 'false' path.

  • You need to configure the following to set up conditions for comparison within an If/Else block:

  • AND/OR

    • AND: The overall condition is considered True only if all individual conditions are True.

      • Example: 'If the user name is "Lee" AND the password is "1234", both conditions must be met.'

    • OR: The overall condition is considered True if at least one of the individual conditions is True.

      • Example: 'If the company is "Genians Inc." OR the phone number is "031-8084-9770", either one of the conditions is sufficient.'

  • Conditions

    • You can set comparison conditions for String, Number, and Boolean data types.

    • If the data type is incorrect, an error message indicating that comparison is not possible will be displayed.

  • In an If/Else process, the subsequent process, branched according to the condition, can continue to use data from the previous step.