Previous Page
|
Next Page
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;
Copyright © SAS Institute Inc. All rights reserved.
Previous Page
|
Next Page
|
Top of Page