BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Planck
Obsidian | Level 7

Hi all,

 

I have several macrovariable named:

&mAA
&mAB
&mBA
&mBB
...

Each of them has a string value.

 

Now I create a macro with two arguments 

mymacro ( firststring, secondstring)

I want this macro to be able to modify the current value of one of my macrovariable with the value of secondstring.

Which macrovariable need to be modified? That's the point:

 

The value of the firststring can be "AA","AB","BA,"BB",...

If it is AA I need to modify &mAA

If it is BA I need to modify &mBA

 

Globally I need to do

&m&firststring.. = &secondstring.;

But like this of course, it is not working, and I don't really know how to do it?

 

Do you have an idea?

 

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

You'll need to construct a %LET statement to assign a value to a macro variable.  The contents of your macro might end up looking like this:

 

%let m&firststring = &&m&secondstring;

 

Or, it might end up being:

 

%let m&firststring = &secondstring;

 

It's not clear which result you are looking for (probably the second one, based on your sample attempted code), but both of these are somewhere in the ballpark.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

You'll need to construct a %LET statement to assign a value to a macro variable.  The contents of your macro might end up looking like this:

 

%let m&firststring = &&m&secondstring;

 

Or, it might end up being:

 

%let m&firststring = &secondstring;

 

It's not clear which result you are looking for (probably the second one, based on your sample attempted code), but both of these are somewhere in the ballpark.

Planck
Obsidian | Level 7

It's indeed the second one. Sorry if I was not completely clear.

 

Thanks very much for the answer! 🙂

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 765 views
  • 1 like
  • 2 in conversation