Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 50
Program
Changing the data type of a variable in a SAS data set


data event (drop=statusno);
   set event (rename=(status=statusno));
   length status $ 1;
   status = put(statusno, f1.);
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page