BookmarkSubscribeRSS Feed
Barney1998
Obsidian | Level 7

Hallo to everyone.

I have this problem. I have a big data set so this i will try to explain you it was difficult to be implemented by hand.

 

First of all i have one data set which looks like:

qq1 qq2 qq3 qq4
1                              
          0     

          0 
                 2          
                       11
i want to pick up all the variables in one new column 
like
qq
1
0
0
2
11

from the first table if one column value is not missing means that all the other columns are missing in the same row
thank you in advance

               

1 REPLY 1
FreelanceReinh
Jade | Level 19

Hallo @Barney1998,

 

If qq1 - qq4 are numeric variables, you can use the COALESCE function to obtain the first non-missing value:

data have;
input qq1-qq4;
cards;
1 . . .
. 0 . .
. 0 . .
. . 2 .
. . . 11
;

data want(drop=qq1-qq4);
set have;
qq=coalesce(of qq1-qq4);
run;

 

For character variables there is the similar COALESCEC function.

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 346 views
  • 3 likes
  • 2 in conversation