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.
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;
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;
Problem solved. Thanks for the quick reply.
@nicolaskan Then please mark the correct answer as solution.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.