SASUnit Examples
Version 1.2.1
Main Page
Modules
Files
File List
nobs.sas
Go to the documentation of this file.
1
25
%MACRO nobs(
26
data
27
);
28
%local dsid nobs;
29
%let nobs=;
30
%let dsid=%sysfunc(open(&data));
31
%
if
&dsid>0 %then %
do
;
32
%let nobs=%sysfunc(attrn(&dsid,nlobs));
33
%let dsid=%sysfunc(close(&dsid));
34
%end;
35
&nobs
36
%MEND nobs;
saspgm
nobs.sas
Generated on Fri Feb 22 2013 13:52:21 for SASUnit Examples by
1.8.2