Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
proc sort data=dset1;
by client_id rec_date;
run;
data dset2(drop=kept)
dupes;
set dset1;
by client_id;
if last.client_id then
do;
output dset2;
kept='Y';
end;
if not(first.client_id and last.client_id) then output dupes;
run;