BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Nasser_DRMCP
Lapis Lazuli | Level 10

Hello,

 

I have2 datasets with the same strcuture.

the first holds 945057 rows and the second holds 944820 rows.

I would like to get in an output dataset only rows that are missing in the second dataset.

thanks in avdance for your help

regards

Nasser

1 ACCEPTED SOLUTION

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

Something like (not tested as nothing to test on):

data want;
  set have 1 (in=a) have2 (in=b);
  /* Note I do not know what variables are in each so I cannot put anything in the next row */
  by ...;
  if a and not b;
run;

You could also use except in SQL, proc compare with dataset output.  Again, without test data in the form of a datastep I can't be anymore specific.

View solution in original post

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Something like (not tested as nothing to test on):

data want;
  set have 1 (in=a) have2 (in=b);
  /* Note I do not know what variables are in each so I cannot put anything in the next row */
  by ...;
  if a and not b;
run;

You could also use except in SQL, proc compare with dataset output.  Again, without test data in the form of a datastep I can't be anymore specific.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 3749 views
  • 0 likes
  • 2 in conversation