Is there a simple way to check if a SAS dataset is empty in 9.2?
I could do a proc sql with count(*) but I was hoping for something with less lines.
Either one will give you the same thing, could save time if the dataset turns out to be huge, you wouldn't have to wait for the count():
proc datasets lib=work nolist;contents data=have;quit;run;
proc contents data=work.have;
Either one will give you the same thing, could save time if the dataset turns out to be huge, you wouldn't have to wait for the count():
proc datasets lib=work nolist;contents data=have;quit;run;
proc contents data=work.have;
I like these macros for counting obs and checking if a dataset is empty.
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.