Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 5
Program 5e
Value formats


*
  Professional SAS Programming Secrets
  Program 5e
  Value formats
*;
proc format;
value lh (min=4 max=32)
    low - 0 = 'None'
    0 <- 30 = 'Low'
    30 <- high = 'High';
value $tcat (min=1)
    '1030', '1050', '1055', '1090', '2000' - '2999' = 'Credit'
    '1100' - '1199', '1070', '1080', '3000' - '3999' = 'Debit';
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections