Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 9
Program 9l
Variables that are the same in every observation


*
  Professional SAS Programming Secrets
  Program 9l
  Variables that are the same in every observation
*;
data work.fixed;
   Galaxy = "Milky Way";
   Star = "Sun";
run;

options nocenter;
proc print data=work.fixed;
run;

data work.planetcomplete;
   if _n_ = 1 then set work.fixed;
   set work.planet;
run;
proc print data=work.planetcomplete;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections