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

Data I have:

 

ID             ELASS  MATHSS SCISS SOCSS

1                  100

1                               210

1                                               325

1                                                            225

2                  120       

2                              225           

2                                               410      

2                                                            228

 

I want one obs per ID, like so:

 

ID             ELASS  MATHSS SCISS SOCSS

1                 100        210          325     225

2                  120       225          410     228

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
data have;
input ID             ELASS  MATHSS SCISS SOCSS;
cards;
1                  100 . . .
1                             .  210 . .
1                                . .               325 .
1                                   . . .                         225
2                  120      . . . 
2                        .      225   . .        
2                                .  .               410   .   
2                                   . . .                         228
;
data want;
update have(obs=0) have;
by id;
run;

View solution in original post

1 REPLY 1
novinosrin
Tourmaline | Level 20
data have;
input ID             ELASS  MATHSS SCISS SOCSS;
cards;
1                  100 . . .
1                             .  210 . .
1                                . .               325 .
1                                   . . .                         225
2                  120      . . . 
2                        .      225   . .        
2                                .  .               410   .   
2                                   . . .                         228
;
data want;
update have(obs=0) have;
by id;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 854 views
  • 1 like
  • 2 in conversation