Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 58
Program
Simple detail report from REPORT procedure


proc report data=work.volcano nowd spacing=3;
   column name latitude longitude elevation;
   define name / 'Volcano' order width=20 left spacing=8;
   define latitude / 'Latitude' display format=8.2;
   define longitude / 'Longitude' display format=9.2;
   define elevation / 'Elevation' format=comma9.;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page