Folks, Could I extend said code to only look at certain datasets within the quoted libs? Something such as; data _null_;
set sashelp.vtable
(where=(libname in ('P2005','P2006','P2007','P2008','P2009','P2010','P2011','P2013','P2014','P2015')));
(where=(memname in ('ACCOUNTS','PERSONAL','TRADE')));
call execute(cats('proc freq data=', libname, '.', memname, ';'));
call execute(cats('title "', libname, '.', memname, '";'));
call execute ('tables id / missing; format id $mygroup.; run;');
run;
... View more