BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PeterClemmensen
Tourmaline | Level 20

Hi All 🙂

 

I have the following problem. I have two datasets have1 and hav1 as below

 

data have1;
   input A $ B C;
   datalines;
   Peter 10 100
   Peter 20 300
   Anna  36 900
   Kelly 80 700
   Kelly 40 400
   Kelly 70 800
   Max   45 951
   Max   12 752
   ;

data have2;
   input A $ B C;
   datalines;
   Peter 10 100
   Anna  36 900
   Kelly 80 700
   Kelly 70 800
   Max   12 752
   James 46 943
   ;

Now I want to extract the observations in have1 that do not exist in have2, which in this case makes my WANT dataset looking like this

 

data want;
input A $ B C;
   datalines;
Peter 20 300
Kelly 40 400
Max   45 951
   ;

Thank you in advance 🙂

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

SQL has a nice except join for this:

proc sql;
  create table WANT as 
  select  A,B,C
  from    HAVE 1
  except select A,B,C from HAVE2;
quit;

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

SQL has a nice except join for this:

proc sql;
  create table WANT as 
  select  A,B,C
  from    HAVE 1
  except select A,B,C from HAVE2;
quit;
Jagadishkatam
Amethyst | Level 16
consider that both the datasets have1 and hav1 are sorted by variables A and B.

data want;
merge have1(in=a) hav1(in=b);
by A B;
if a and not b;
run;
Thanks,
Jag
PeterClemmensen
Tourmaline | Level 20

Very cool, thank you both 🙂

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1243 views
  • 1 like
  • 3 in conversation