Command Reference : Programming Language Reference
  
 
else
ELSE clause of IF statement in a program.
Starts a sequence of commands to be executed when the IF condition is false. The else keyword must be terminated with an endif.
Syntax
if [condition] then
[commands to be executed if condition is true]
else
[commands to be executed if condition is false]
endif
Cross-references
See “IF Statements”. See also, if, endif, then.