Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14f
Aliases in the REPORT procedure


*
  Professional SAS Programming Secrets
  Program 14f
  Aliases in the REPORT procedure
*;

proc report data=work.pols nowd;
   column name office
       ('Last Elected' elected=elected_month elected=elected_year);
   define name / 'Name' format=$char23.;
   define office / 'Office' format=$char17.;
   define elected_month / 'Month' format=monname9.;
   define elected_year / 'Year' format=year4.;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections