From: SAS_learner on
Hello all,

I can see and check if a dataset is missing or not using something like
this,

%let dsid=%sysfunc(open(work.test,in));
%let nobs=%sysfunc(attrn(&dsid,nobs));
%if &dsid > 0 %then %let rc=%sysfunc(close(&dsid));

if there something similar that to check to see if there is a Variable
present is Null or not and to Print that variable in Proc Report ??

Thanks
SL