SAS OnlineTutorback||next

Try It! Insert pointer controls and column numbers to complete the input statement which reads the raw data file Vandata.

Creating HTML output? Read this first.

  1. 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;
    

  2. Complete the INPUT statement using the @n pointer control.

  3. Submit the program and view the output.

    Return here and select Next.

Solution

back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA.
All rights reserved.

Terms of Use & Legal Information | Privacy Statement