Hi guys,
i'm trying to import several tables from external Access database into SAS. the access files names are like 'A2014' , 'A2015', and the tables in each file have names 'A2014-01' , 'A2014-02' ...
my code is
%macro loadin(year=, month=) ;
libname temp PCFILES path="C:\trial\A&year..accdb";
proc sql;
select a , b, c
from temp."A&year.-&month"n ;
quit;
%mend;
%loadin (year=2014, month=01) ;
so i succeeded in assigning the libname, linking the external access file with SAS. but in the proc sql step, error msg showed up , saying A2014-01 is not a valid SAS name. how do I edit my code to get around problem ??
Thanks,
Darren
Use
PROC SQL DQUOTE=ANSI;
Hi I got the same problem of dash in SAS macro too.
How did you solve the problem?
Thanks in advance!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.