GTL Does Not Provide ELSE IF Syntax

The GTL does not provide ELSE IF syntax, but you can create a nested IF/ELSE block as follows:
IF (condition-1)
GTL-statement(s);
ELSE
IF (condition-2)
GTL-statement(s);
ELSE
GTL-statement(s);
ENDIF;
ENDIF;