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
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;
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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.