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-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
  • 3 replies
  • 854 views
  • 2 likes
  • 3 in conversation