-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ).
data perm.vansales;
infile vandata;
input ? Quarter 1. ? Region $9.
? TotalSales comma11.;
run;
proc print data=perm.vansales;
run;
-
Complete the INPUT statement using the @n and +n pointer
controls to read the variables in this order:
Quarter ,
Region , and TotalSales .
-
Submit the program and view the output.
Return here and select Next.
|
|