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

Good Morning All.  I have never come across something like this issue before so I am not sure how to search for the issue.  I am not sure what something like this would be called.  I appreciate any guidance on this.

 

So the issue is I have data that has an ID number and for each ID number there should be 7 keys associated.  See example below.

 

ID         KEY

00001    01

00001    02

00001    03

00001    04

00001    05

00001    06

00001    07

 

However some data is coming through like this

 

ID         KEY

00001    01

00001    02

00001    04

00001    07

 

How can I identify within SAS IDs that do not have the full 7 keys associated?  

 

Again thank you for any help or guidance.  I did have the idea of adding a row number count, so I will be trying that.

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

data have;
input (ID         KEY) ($);
cards;
00001    01
00001    02
00001    03
00001    04
00001    05
00001    06
00001    07
00002    01
00002    02
00002    04
00002    07
;

proc sql;
create table check as
select *
from have
group by id
having count(distinct key)<7;
quit;

/*Or if you want just a list of ID's that do not have 7 keys associated*/

proc sql;
create table check as
select distinct id
from have
group by id
having count(distinct key)<7;
quit;

 

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Create a data set which you know has all 7 keys for each ID. Then compare this created data set to the actual data set to see what isn't present in the actual data set.

 

/* Create fake data set with all keys using Cartesian Join in PROC SQL */
proc sql;
    create table distinct_id as select distinct id from actual;
    create table distinct_key as select distinct key from actual;
    create table fake as select * from distinct_id,distinct_key;
quit;

/* Compare fake to actual */
data compared;
     merge fake actual(in=in2);
     by id key
     if not in2; /* This creates a data set compared of only those keys that are not in data set actual */
run;
--
Paige Miller
novinosrin
Tourmaline | Level 20

data have;
input (ID         KEY) ($);
cards;
00001    01
00001    02
00001    03
00001    04
00001    05
00001    06
00001    07
00002    01
00002    02
00002    04
00002    07
;

proc sql;
create table check as
select *
from have
group by id
having count(distinct key)<7;
quit;

/*Or if you want just a list of ID's that do not have 7 keys associated*/

proc sql;
create table check as
select distinct id
from have
group by id
having count(distinct key)<7;
quit;

 

IgawaKei29
Quartz | Level 8

Thank you both, appreciate the help.  Both options worked for what I needed.  

sbxkoenk
SAS Super FREQ

Hello,

Produce a dataset that is complete (all keys present!).

Then check which of these keys are not present in your "real" dataset;

 

data work.all_keys;
LENGTH ID $ 5;
input ID $ 1-5;
cards;
00001
00002
;
run;
data work.all_keys;
 set work.all_keys;
 do key='01','02','03','04','05','06','07';
 output;
 end;
run;
proc sort data=work.all_keys; by ID key; run;
data work.real_keys;
LENGTH ID $ 5 key $ 2;
input ID $ 1-5 key $ 7-8;
cards;
00001 01
00001 02
00001 04
00001 07
00002 01
00002 02
00002 03
00002 04
00002 06
;
run;
proc sort data=work.real_keys; by ID key; run;
data missing_keys;
 merge work.all_keys(in=a) 
       work.real_keys(in=b); 
 by ID key;
 if a and NOT b then output;
run;
/* end of program */

 

Regards,

Koen

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 629 views
  • 4 likes
  • 4 in conversation