Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14j
Detail report with summary lines in REPORT procedure


*
  Professional SAS Programming Secrets
  Program 14j
  Detail report with summary lines in REPORT procedure
*;

proc report data=work.orbital nowd;
   column bodytype sequence planet radius mass log_radius log_mass;
   define bodytype / 'Body Type' order;
   define sequence / '#' order format=f2. noprint;
   define planet / 'Planet';
   define radius / 'Radius' mean;
   define mass / 'Mass' mean;
   define log_radius / 'Log Radius' mean;
   define log_mass / 'Log Mass' mean;
   break after bodytype / summarize suppress
       style=[backgroundcolor=white];
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections