Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 59
Program
Simple data step text table


DATA _NULL_;
   RETAIN A 8  B 19  C 32  D 42  E 52;
   SET WORK.SETUP;
   FILE PRINT N=PS LL=LL LINE=LINE;
   * Page break and header ;
   IF LL <= 1 OR _N_ = 1 THEN PUT _PAGE_ @D 'Setup'
       / @A 'Section' @B 'Equipment' @C ' Power' @D ' Time' @E 'Weight'
       /;
   * Table row ;
   PUT @A DEPT $CHAR8. @B EQUIP $CHAR10. @C POWER F6.
       @D SETUP F5. @E WEIGHT F6.;
RUN;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page