-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). Submit the program and use
the error messages in the SAS log to diagnose the error(s).
data perm.sales
infile saledata;
inptu LastName $ 1-7 Month $ 9-11
Residential 13-21
Commercial 23-31;
Total=residential+commercial;
run;
-
Recall the DATA step to the Program Editor window. Correct and resubmit the
program. When correct, the data set Perm.Sales contains
nine observations and five variables.
Return here and select Next.
|