BookmarkSubscribeRSS Feed
evp000
Quartz | Level 8

Hi,

How can I make the 2nd part below work?  It will be part of a macro DO loop and I want to create the macros dynamically.  Is there a macro quoting function that will resolve the i first?

%macro macroname1;

%put hello 1;

%mend;

%macroname1;

%let i = 1;

%macro macroname&i;

%put hello 2;

%mend;

%macroname&i.;

Many thanks.

4 REPLIES 4
ballardw
Super User

Before going down the make a macro within a macro route, what are you attempting to do? You might be better off with a single macro that allows parameters to pass that will do the task conditional on values passed.

For example in the trivial example you are using:

%macro Hello(word=);

%put Hello &word;

%mend;

Then another macro could call and pass a value;

%macro loop (loops=);

%do I = 1 %to &loops;

     %hello(word=&loops);

%end;

%mend;

%loop (loops=3);

evp000
Quartz | Level 8

Thank you for responding but no, I don't believe it can be done that way.  For certain records, I have to do a number of checks to assign another value.  The checks (sets of rules) are in an external file and vary greatly, both in the number of checks within each setand how they are performed.  So I wanted to create a macro for each set of rules directly from that external file, to be executed for the appropriate records.  The code (created by the macros) will use values from the original data.  The part about naming the macros was the only roadblock I hit so I simplified the example to just show that part.  

Tom
Super User Tom
Super User

You should think of a better way to handle your actual problem.  But as a purely theoretical problem you need to use a different method to generate the code.  The macro processor is not designed to allow the name of a macro to be generated by the macro processor itself.

For example you could use a data step to write the macro statement.

%let i = 1;


filename code temp ;

data _null_;

  file code ;

  put '%macro macroname' "&i;" ;

run;


%inc code / source2 ;

%put hello 2;

%mend;


Or use the %UNQUOTE() macro function.

%let i = 1;

%unquote(%qsysfunc(dequote('%macro')) macroname&i);

%put hello 2;

%mend;

%macroname&i.;

evp000
Quartz | Level 8

Thank you.  Yes, I have decided to approach it differently but it is interesting to see how you would get around the problem with the quoting functions.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 956 views
  • 4 likes
  • 3 in conversation