BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
SASuserlot
Barite | Level 11

I am looking to create an additional variable that show the list of variables that have the missing values. Is it possible?

data have;
  input id  x1 y1 z1 ;
  cards;
 106 1 . 2
 107 3 . .
 108 . . .
 109 1 2 3
 ;

 run;

Have:

SASuserlot_0-1662488977076.png

Want

SASuserlot_1-1662489066376.png

 

In the 'Have' dataset  For example: for 106 subject missing values for x1, y1, z1. then I am expecting to create a variable 'missvar'  with variable list separated by delimiter of any kind. is this possible to achieve? Thanks

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Try this

 

data have;
  input id  x1 y1 z1 ;
  cards;
 106 1 . 2
 107 3 . .
 108 . . .
 109 1 2 3
 ;

data want;
   set have;
   array a x1 -- z1;
   length missvar $200;
   
   do over a;
      if a = . then missvar = catx(', ', missvar, vname(a));
   end;
run;

View solution in original post

6 REPLIES 6
PeterClemmensen
Tourmaline | Level 20

Try this

 

data have;
  input id  x1 y1 z1 ;
  cards;
 106 1 . 2
 107 3 . .
 108 . . .
 109 1 2 3
 ;

data want;
   set have;
   array a x1 -- z1;
   length missvar $200;
   
   do over a;
      if a = . then missvar = catx(', ', missvar, vname(a));
   end;
run;
PaigeMiller
Diamond | Level 26

I'm curious, @SASuserlot , how does having such a text string such as 'x1,y1,z1' help anything? What will you do with it once you create it?

--
Paige Miller
SASuserlot
Barite | Level 11

This is an example simulate my data to check data errors. We have have   two questions which gate the next set of Numeric  Score for next set of question.

Q1, Q2 are Yes or No questions. Q3,Q4, Q5---Q100 are numeric scores questions. Q3, Q4, Q5---Q100 and Q Total, only given score when  at least Q1 or Q2 Need to be 'Yes'. 'Q total'  only Calculated when all the questions are answered.

So we have the followinng situations where

Q1='Y' and Q2='Y' but some 'Qx'  missing the scores and Q total was created.   We need to output the list of all those questions missing the  scores as list  showing why it's a data error with flags in xlsx file.

I hope it makes some kind of sense.

 

PeterClemmensen
Tourmaline | Level 20

@SASuserlot beware that there is a difference between your have data in the image and your posted data step.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 6 replies
  • 485 views
  • 3 likes
  • 3 in conversation