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.

 

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 600 views
  • 3 likes
  • 2 in conversation