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

Hi there,

Suppose I have the following macro

%MACRO MacroA(varA, varB);

I would like to create a new dataset that should be named varA_varB. For example, if varA is hello and varB is world, the datasource would be hello_world.

I tried &varA + "_" &varB in my macro code, but SAS doesn't like that. How can I achieve this?

Regards,

P.

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

&vara._&varb

You do not need an operator to combine strings generated by macro code.  But you do need something to help the parser distinguish between whether you want the value of macro variable VARA or one named VARA_ .  So you need to add a period before the _.   Now if you really do need to have a period immediately after an expanded macro variable then you will have to type two as the first will be interpreted as ending the macro variable reference.

View solution in original post

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

data class1 class2;

  set sashelp.class;

run;

%macro macroa(vara,varb);

data &vara._&varb;

  set &vara &varb;

  run;

%mend;

%macroa(class1,class2)

proc print data=&syslast;run;

Tom
Super User Tom
Super User

&vara._&varb

You do not need an operator to combine strings generated by macro code.  But you do need something to help the parser distinguish between whether you want the value of macro variable VARA or one named VARA_ .  So you need to add a period before the _.   Now if you really do need to have a period immediately after an expanded macro variable then you will have to type two as the first will be interpreted as ending the macro variable reference.

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
  • 12772 views
  • 6 likes
  • 3 in conversation