Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 51
Program
Merge after checking for unique key values


data a1 / view=a1;
   set a;
   by x;
   if last.x;
run;
data b1 / view=b1;
   set b;
   by x;
   if last.x;
run;
data d;
   merge a1 b1 c;
   by x;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page