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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.