Online File
How to use this page
Rick Aster: Professional SAS Programming Shortcuts: Contents
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;