Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10e
Age group value format


*
  Professional SAS Programming Secrets
  Program 10e
  Age group value format
*;
proc format;
value age3grp
    0 -< 21 = '0-20'
    21 -< 71 = '21-70'
    71 - high = '71+'
    other = '';
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections