BookmarkSubscribeRSS Feed
chouchou
Calcite | Level 5

%macro location(type);

     data _null_;

     call symput('type','Train');

run;

%mend;

%put &type;

%location(Automobile)

%put &type;

Two similar warnings come out:WARNING: Apparent symbolic reference TYPE not resolved.

I think the first %put &type; should resolve to Train; the second %put &type; should resolve to Automobile.

Could anyone explain to me why I am totally wrong? Thank you guys.

2 REPLIES 2
data_null__
Jade | Level 19

Maybe this is what you are trying to do.  But it doesn't seen to have a point.

%macro location(type);
   data _null_;
      call symputx(
'type',"&type",'G');
      run;
  
%mend;
%
location(Auto);
%put NOTE: &=type;
Quentin
Super User

It's all about scoping rules.

Macro variables are stored in symbol tables.  There is a global symbol table (used for the whole SAS session), and a macro can create a local symbol table which exists while the macro is executing.

Your macro creates a local symbol table to hold the parameter (macro variable) TYPE.  When CALL SYMPUT executes and writes the value TRAIN to a macro variable TYPE, it needs to decide whether to write it to the local macro variable that exists named TYPE, or to the global symbol table.  The scoping rules CALL SYMPUT follows tell it to write the the macro variable TYPE in the local symbol table. 

Your %PUT statements outside of the macro don't resolve, because they are looking for a macro variable named TYPE in the global symbol table.  And there isn't one.

data_null_'s solution explicitly tells SYMPUTX to write the macro variable TYPE to the global symbol table, accomplishing your apparent purpose.

--Q.

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 710 views
  • 0 likes
  • 3 in conversation