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