Hello EG Users,
Is it possible to read length of dataset? I am interested in counting number of observations in a dataset and save it as macro variable, so that I can access it later in another data step.
data have;
input NumProduct 2.;
datalines;
11
21
31
41
51
;
run;
%Let havelength = 5;
data have1;
set have;
do i=1 to &havelength;
MultipleOfFive = NumProduct * 5;
output;
end;
run;
Expecting have1 to have following observations:
55
105
155
205
255
Any suggestions on how to calculate 5 in %Let macro statement so that even if number of observations change dynamically in dataset have, dataset have1 will get populated correctly?
thanks,
Dhanashree
For your example program you don't need the value in a macro variable at all. You can also get it in any data step with something like this again not need for macro variable.
if 0 then set have(drop=_all_) nobs=nobs;
There are a number of ways to do that. e.g.:
data _null_;
if 0 then set have nobs=nobs;
call symput('havelength',nobs);
stop;
run;
For your example program you don't need the value in a macro variable at all. You can also get it in any data step with something like this again not need for macro variable.
if 0 then set have(drop=_all_) nobs=nobs;
That works gret.. really appreciate shedding light on use of nobs!
Thanks much
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.