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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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