data _null_;
if _n_=1 then do;
if 0 then set sashelp.class;
declare hash h(dataset:'sashelp.class',ordered:'y',multidata:'y');
h.definekey('weight');
h.definedata(all:'y');
h.definedone();
end;
rc=h.output(dataset:'want');
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.