|
Insert pointer controls and column numbers
to complete the input statement which reads the raw data file
Vandata. |
-
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 ? Region $9. ? Quarter 1.
? TotalSales comma11.;
run;
proc print data=perm.vansales;
run;
-
Complete the INPUT statement using the @n pointer control.
-
Submit the program and view the output.
Return here and select Next.
|
|
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA.
All rights reserved.
Terms of Use & Legal Information
| Privacy Statement