Hi
When combining two data sets with the same variables using Data/Merge and a By statement, the records that don't match on the variables in the By statement are just appended to the data set?
Paul
data want;
merge have(in=a) have1(in=b);
by id;
if a and b;
run;
That will get me only those records in both record sets, I am presuming?
The below will get me the records that match on Id overlaying each other and will append those that don't?
data combine;
merge first second;
by Id;
run;
Paul
Yes, that is correct. I thought you don't want to see obs that are not contributing in merge.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.