If Step
Brief description
This step executes a block of code inside a true branch if a given condition is true, and if it isn’t true, it executes a false branch (examples of use)
Step Information
Step name (Not required) – the custom name of the process step that labels the editor’s process step box
Input parameters
Append variable (Not required)– enables user to select one of the variable names previously defined
Condition expression (Required)– specified boolean condition
Additional comments
- Use “<” for less than
- Use “<=” for less than or equal
- Use “ >” for greater than
- Use “>=” for greater than or equal
- Use “==” for equals to.
Also, for multiple conditions, use “&&” for “AND” and “||” for “OR” statement.