I AM WORKING ON A SAS DATA SET CONTAINING 1999 IDs. MOST OF THEM CONTAINS MULTIPLE ROWS (APPROXIMATELY 100000 ROWS IN TOTAL ). THERE IS ANOTHER VARIABLE IN THE DATA SET NAMED "HISTORY" HAVING VALUES "Y" AND "N".
I WANT TO DELETE THE IDs WHO HAVE ONLY ONE ROW AND HISTORY VALUE "Y".
I AM NEW SAS USER AND COULDN'T FIGURE OUT HOW TO DO THIS. PLEASE HELP ME. ATTACHED IS A SAMPLE FILE.
data want;
set have;
by id;
if first.id and last.id and upcase(history)='Y' then delete;
run;
Please don't post the same question multiple times. Thank you
data want;
set have;
by id;
if first.id and last.id and upcase(history)='Y' then delete;
run;
Please don't post the same question multiple times. Thank you
Thanks.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.