BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
User12321
Obsidian | Level 7

Hello!

We have 9.2 and 9.4 in shop.

However the following code (with different datafile and dbms characteristics) works in 9.4 but not in 9.2.

We have to make it to run on machine with 9.2

%macro readexcel(sheet);

proc import out= &sheet

datafile = "&path\&name..xls"

dbms = EXCEL2000 REPLACE;

sheet ="&sheet";

getnames=yes;

run;

data &sheet;

length nm $40;

set &sheet;

nm=symget('sheet');

run;

%mend readexcel;

 

When macro is executed all data from the sheet is there in the set, but column "nm"  that suppose to have Sheet name is empty, and we get message:

NOTE: Invalid argument to function SYMGET at line 2 column 47.

Thanks. 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Why are you using symget and not the macro variable directly? 

 

Nm="&sheet";

 

Looks like symget expects double quotes. From the docs

 

argument
can be one of the following items:

the name of a macro variable within double quotation marks but without an ampersand
the name of a DATA step character variable, specified with no quotation marks, which contains a macro variable name
a character expression that constructs a macro variable name

View solution in original post

2 REPLIES 2
Reeza
Super User

Why are you using symget and not the macro variable directly? 

 

Nm="&sheet";

 

Looks like symget expects double quotes. From the docs

 

argument
can be one of the following items:

the name of a macro variable within double quotation marks but without an ampersand
the name of a DATA step character variable, specified with no quotation marks, which contains a macro variable name
a character expression that constructs a macro variable name

SAS Innovate 2025: Register Now

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!

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
  • 666 views
  • 0 likes
  • 2 in conversation