ABSTRACT

The PROC SORT sets up the variable “donor” as a key for the merging.

DATA tnfdata12; INFILE 'a:\data\tnfdata12.dat' TRUNCOVER; INPUT donor 1-2 rep2 3-8; PROC SORT; BY donor;

The PROC SORT sets up the variable “donor” as a key for the merging.