Else-If
This action of Avo Assure available under the @Generic Element and the functionality of this action in Avo Assure is to check if the condition is satisfied or not. If the initial If condition fails, then the Else-If part is executed as an alternative conditional path and the result is store in dynamic variable.
Note: Without If action we cannot execute Else-If.
Syntax
Input Value:(<operand1>;<operator>;<operand2>)
<operand1> (Required)
An operand is the value or data that an operator acts upon. It can be a constant (number, string, etc.).
<operator> (Required)
An operator is a symbol or mathematical operation that performs a specific comparison. Supported operators: >, <, ==, >=, <=, != along with the logical operators AND, OR, NOT
<operand2> (Required)
Value to compare against operand1. Can be a static value or a dynamic variable.
Output Value
<Dynamic Variable>(Optional);<Dynamic Variable>(Optional)
This variable stores the status as true or false
Example
Evaluates a new condition if the previous If condition fails
The ElseIf action takes a condition in the Input Value column (e.g., {Income};>=;50000) and checks it only if the initial If condition is false. It allows branching logic to test another condition before proceeding to the Else block. The flow continues with the steps inside the Else If block if the condition is true; otherwise, it moves to the next Else If or Else block. The Else If action does not return any output or status.

Last updated
Was this helpful?