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

Hi guys,

 

would like to seek advice in solving the issue of "apparent invocation of macro" issue when i try to use %let and & to call the variable using proc sql statement. Here is the case.

 

%let ABC =FY15;

/* the dataset name is "FY15_CDE" */

 

when i want call the macro variable in proc sql statement by:

 

proc sql;

create table temp as

select * from &ABC_CDE;

quit;

 

the warning occurs:

 "WARNING: Apparent symbolic reference ABC not resolved."

 

May i know if there are any advice to solve this?

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

The warning should read "WARNING: Apparent symbolic reference ABC_CDE not resolved."

 

You have to tell sas that you want the variable ABC resolved, you just have to add a dot:

 

proc sql;

create table temp as

select * from &ABC._CDE;

quit;

View solution in original post

3 REPLIES 3
andreas_lds
Jade | Level 19

The warning should read "WARNING: Apparent symbolic reference ABC_CDE not resolved."

 

You have to tell sas that you want the variable ABC resolved, you just have to add a dot:

 

proc sql;

create table temp as

select * from &ABC._CDE;

quit;
nicolaskan
Fluorite | Level 6

Problem solved. Thanks for the quick reply.

Patrick
Opal | Level 21

@nicolaskan Then please mark the correct answer as solution.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1493 views
  • 2 likes
  • 3 in conversation