Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 54
Program
Value formats and informats for table lookup


PROC FORMAT;
VALUE USTZN
   -5 = 'Eastern'
   -6 = 'Central'
   -7 = 'Mountain'
   -8 = 'Pacific'
   ;
INVALUE LIST
   '56012' - '56037' = 2.89
   '56088' - '56114' = 1.79
   OTHER = .
   ;
INVALUE PRCOL (UPCASE JUST)
   'RED', 'GREEN', 'BLUE' = 1
   ' ' = .
   OTHER = 0
   ;
RUN;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page