|
dictionary.tables is another quick option to get such info about a dataset:
you might try:
proc sql noprint;
select (NOBS-DELOBS+0) into:number
from %str(dictionary.tables)
where libname="LIBNAME" and memname="DATANAME";
quit;
&number will hold the number of obs.
Regards,
dalesam@hlthsrc.com
|