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