- Copy the program below and paste it into the Program Editor window
(or issue the command
copy sashelp.oltutor..source ).
data sasuser.mysales2;
set sashelp.prdsale;
if region="EAST";
run;
- Submit the program and view log messages.
- Select Run
Recall Last Submit to recall the program.
|
If you are using an
Enhanced Editor window in the Windows operating environment, you do not need to recall the program. |
- Edit the third line of the program as follows:
if quarter=1;
- Submit the program again.
- View messages in the Log window about your program. How many observations
(rows) and variables (columns) does the new data set contain?
Return here and select Next.
|
|