data have;
input ID $8. Description $;
cards;
001 Text1
002:003 Text2
;
data Need;
length _id $20;
set have;
do _n_=1 to countw(id,':');
_id=scan(id,_n_,':');
output;
end;
drop id;
rename _id=id;
run;
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.