How can I delete duplicates of one variable based on a start date using NODUPKEY?
Thanks!
Sort it twice. First time with email address and date, second with email address and the NODUPKEY option.
Provide more details.
@lboyd wrote:
How can I delete duplicates of one variable based on a start date using NODUPKEY?
Thanks!
Sort it twice. First time with email address and date, second with email address and the NODUPKEY option.
For instance, if someone said Sam123@gmail.com and also sam123@gmail.com-I'd want one of those deleted from the database.
To fix this you need to clean your data first.
This code gets rid of missing e-mails, is there a way to prevent that?
To deal with this you likely need to do it manually.
First sort and then use a data step with first/last but coding an exception for the missing emails.
proc sort data=have;
by group_var;
run;
data want;
set have;
by group_var;
if first.group_var or missing(group_var);
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.