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 dataset


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