SASUnit Examples
Version 1.5.0
Main Page
Modules
Files
File List
_nobs.sas
Go to the documentation of this file.
1
20
%MACRO _nobs(i_data
21
);
22
23
%local dsid nobs;
24
%let nobs=0;
25
%let dsid=%sysfunc(open(&i_data));
26
%
if
&dsid>0 %then %
do
;
27
%let nobs=%sysfunc(attrn(&dsid,nlobs));
28
%let dsid=%sysfunc(close(&dsid));
29
%end;
30
&nobs
31
%MEND _nobs;
saspgm
sasunit
_nobs.sas
Generated on Fri Jan 16 2015 14:00:28 for SASUnit Examples by
1.8.4