The run statement tells SAS to process the preceding program statements. Example:
proc means data=first;
run;
Here the run statement starts the processing of the means procedure. The position of the run statement determines when title statements take effect.
The run statement should also be used to mark the end of a datastep.
Copyright © 1997 by Jerry Alan Veeh. All rights reserved.