Hi All,
I have a question with merging two datasets. I want to merge table A with table B and get all the observations in table A that doesn't match with table B. I don't want the matched observations. I have something like this for all matched observations from table A and matching with table B.
DATA matched1; MERGE test1(IN = a) test2;
BY gender age;
IF a;
RUN;
I know this gives all the observations from test1 and those matching from test2. But I want the non-matched one, can I do something like this:
DATA matched1; MERGE test1(IN = a) test2(in=b);
BY gender age;
IF a and not b; /*Not sure if this is the right statement to use in SAS*/
RUN;
Please advise!
Thank you,
Malathi
Your second DATA step is correct for what you want. There is no harm in testing it for yourself to see if it gives your the results you want.
Your second DATA step is correct for what you want. There is no harm in testing it for yourself to see if it gives your the results you want.
if not b ;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.