I have a number of files on which to run a macro. They are approximately 300. I have to do something like this:
%Counts(Mod1_PS);%Counts(Mod2_PS);
Is there a way to "call" the macro on all files Mod*_PS from 1 to 300?
Thank you in advance
%macro around(nfiles=); %do i=1 %to &nfiles; %counts(mod&i._ps) %end; %mend around; %around(nfiles=300)
View solution in original post
data _null_; do i = 1 to 300; call execute(cats('%nrstr(%counts(Mod',i,'_PS))')); end; run;
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!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.