BookmarkSubscribeRSS Feed
Ted
Calcite | Level 5 Ted
Calcite | Level 5
I have 2 datasets with the same variables and I want to see which observations are in data1 and not in data2.
Is there a point and click way of getting the data from data1 which is only in data1 and not in data2. I can code this but some of our future users will not be coders so will need to know how to do it.
Thanks
1 REPLY 1
ChrisHemedinger
Community Manager
Ted,

You can do this with the query builder in EG.

1. Add both tables to the query builder. (Let's call them TABLE1 and TABLE2). Add the desired columns to the "select" list.

2. In the Join window, make sure that the tables are joined on the key column you want. (Ex: TABLE1.column and TABLE2.column)

3. Modify the Join type to Outer Join (last selection in the list of join types)

That specifies that you want all rows from both tables to be considered for the result set. Now you want to create a filter so that you get only those rows with a value in the first table and NOT in the second table. So...

4. Create a filter: where TABLE2.column IS NULL ("IS NULL" is a selection in the filter operator list)

That should get you what you want.

Chris
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1103 views
  • 0 likes
  • 2 in conversation