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