proc sql;
select distinct name into :names separated by ' ' from dictionary.columns where upcase(memname)='HAVE' and upcase(libname)='WORK' and upcase(name)?'JAN';
quit;
data want; set have (drop=&names); /* OR set have (keep=&names); */ run;
-- Paige Miller
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.