proc sort data=have;
by customerID descending amount;
run;
data want;
set have;
by customerID;
if first.caseID then count=0;
count+1;
if count <= 2;
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.