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 Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.