Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 51
Program
Merge after interleaving


data ab / view=ab;
   set a b;
   by x1 x2;
run;
data cd / view=cd;
   merge c (in=in1) d (in=in2);
   by x1;
   if in1 and in2;
run;
data e;
   merge ab cd;
   by x1 x2;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page