Previous Page | Next Page

Statements

%RUN Statement



Ends source statements following a %INCLUDE * statement.
Valid: anywhere
Category: Program Control

Syntax
Without Arguments
Details
Comparisons
Examples
See Also

Syntax

%RUN;


Without Arguments

The %RUN statement causes SAS to stop reading input from the keyboard (including subsequent SAS statements on the same line as %RUN) and resume reading from the previous input source.


Details

Using the %INCLUDE statement with an asterisk specifies that you enter source lines from the keyboard.

Note:   The asterisk (*) cannot be used to specify keyboard entry if you use the Enhanced Editor in the Microsoft Windows operating environment.  [cautionend]


Comparisons

The RUN statement executes previously entered DATA or PROC steps. The %RUN statement ends the prompting for source statements and returns program control to the original source program, when you use the %INCLUDE statement to allow data to be entered from the keyboard.

The type of prompt that you use depends on how you run the SAS session. The include operation is most useful in interactive line and noninteractive modes, but it can also be used in windowing and batch mode. When you are running SAS in batch mode, include the %RUN statement in the external file that is referenced by the SASTERM fileref.


Examples


See Also

Statements:

%INCLUDE Statement

RUN Statement

Previous Page | Next Page | Top of Page