data temp;
infile datalines truncover;
input Name $ Date
& $50. Remarks $ Cardno ;
datalines;
Alfred 7/2/2011 10:41:22 AM
Abcdewer. 321345
Alfred 7/2/2011 11:20:35 AM. Derdfgdsfg.
Alfred 7/2/2011 3:05:22 PM. Fsdcfgvddf
Elsie
2:22:12 PM. Gffggffghh. 456321
Elsie
5:45:21 PM. Sddcffdfgg.
;
run;
proc sort data=temp;
by name;
run;
data result;
merge temp(drop=cardno)
temp(keep=name cardno where=(cardno
is not missing));
by name;
run;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.