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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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