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