Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 45
Program
Completing a range (alternate)


proc sort data=work.incomplete;
   by x;
run;
data work.allkey (keep=x);
   do point = 1, nobs;
      set work.incomplete point=point nobs=nobs;
      if point = 1 then min = x;
      if point = nobs then max = x;
      end;
   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