SAS - Decision Making



Decision making structures require the programmer to specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.

Following is the general form of a typical decision making structure found in most of the programming languages −

Decision Making

SAS provides following types of decision making statements. Click the following links to check their detail.

Sr.No. Statement Type & Description
1 IF Statement.

An if statement consists of a condition. If the condition is true then the specific data is fetched.

2 IF-THEN-ELSE Statement.

An if statement followed by else statement, which executes when the boolean condition is false.

3 IF-THEN-ELSE-IF Statement.

An if statement followed by else statement, which is again followed by another pair of IF-THEN Statement.

4 IF-THEN-DELETE Statement.

An if statement consists of acondition, which when true deletes the specific data from the observations.

Advertisements