Online File
Rick Aster: Professional SAS Programming Shortcuts: Contents
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;