Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14g
Listing destination formatting options in the REPORT procedure


*
  Professional SAS Programming Secrets
  Program 14g
  Listing destination formatting options in the REPORT procedure
*;

proc report data=work.dwarf nowd
    box headline headskip
    ls=78 ps=48 center spacing=3;
   column sequence planet radius mass;
   define planet / 'Dwarf Planet'
       width=16 spacing=5;
   define sequence / '#' 
       width=5 display right;
   define radius / 'Radius' spacing=1;
   define mass / 'Mass (10^21 kg)'
       width=19 left;
   rbreak after / summarize dol dul;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections