Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 5
Program 5a
Observation loop demonstration


*
  Professional SAS Programming Secrets
  Program 5a
  Observation loop demonstration
*;
data _null_;
   infile fish;
   putlog _n_ 'BEFORE';
   input @1 age f2. @3 species $char11.;
   putlog _n_ 'AFTER';
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections