Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 45
Program
Completing a range


proc summary data=work.incomplete;
   var x;
   output out=work.range min=min max=max;
run;
data work.allkey (keep=x);
   set work.range;
   do x = ceil(min) to max;
      output;
      end;
   stop;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page