data have;
input date :date9. num_1 Num_2 ;
format date date9.;
cards;
06JAN2019 5 10
13JAN2019 5 10
20JAN2019 5 10
27JAN2019 5 10
;
data want;
set have;
if _n_=1 then total+sum(num_1 ,Num_2);
else total+ Num_2;
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.