BookmarkSubscribeRSS Feed
bunnycao
Calcite | Level 5

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

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Use

 

PROC SQL DQUOTE=ANSI;

--
Paige Miller
SummerLee
Calcite | Level 5

Hi I got the same problem of dash in SAS macro too. 

How did you solve the problem?

 

Thanks in advance!

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