Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 10
Program
Ingredients (fixed-field)


data work.component;
   infile new truncover;
   input
       +1
       rank f3.
       name $char40.
       ;
run;

*****
  Alternative form of INPUT statement:

   input
       @2 rank f3.
       @5 name $char40.
       ;
*****;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page