Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 11
Program 11c
Value formats for logical variables


*
  Professional SAS Programming Secrets
  Program 11c
  Value formats for logical variables
*;

proc format;
value yes
    0 = 'no'
    1 = 'yes'
    ;
value on
    0 = 'off'
    1 = 'on'
    ;
value boolean
    0 = 'false'
    1 = 'true'
    ;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections