BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
NewUsrStat
Lapis Lazuli | Level 10

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

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
%macro around(nfiles=);
    %do i=1 %to &nfiles;
        %counts(mod&i._ps)
    %end;
%mend around;

%around(nfiles=300)
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26
%macro around(nfiles=);
    %do i=1 %to &nfiles;
        %counts(mod&i._ps)
    %end;
%mend around;

%around(nfiles=300)
--
Paige Miller

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 2 replies
  • 1011 views
  • 4 likes
  • 3 in conversation