Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 17
Program
Picture formats for numbers


proc format;
picture pctc (round)
    -1 -< 0 = '0001%' (multiplier=100 prefix='-')
    0 = 'Unch.'
    0 <- 1 = '0001%' (multiplier=100 prefix='+')
    ;

picture low
    1 - 10 = '001 (Low)'
    11 - 100 = '001      '
    ;

picture decimal 0 -< 1 = '011111' (multiplier=100000 prefix='.');
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page