Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 64
Program
Create macro variables from parameter file


data _null_;
   infile parm truncover;
   length variable $ 32 value $ 80;
   input variable value $80.;
   call symput(variable, trim(value));
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page