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

Hello:

 

I have the follow macro program. I found the ‘&&state.may.xlsx’ could not be translated to ‘MDmay.xlsx’ during procedure. I have tried ‘&state.may.xlsx’ too, it still didn’t work. Please help, thanks.

 

%let State=MD;

%let folder='\\abc.org\HHE\SAS\report\SASfiles\&&state.may.xlsx';

 

%macro export;

 

%mend;

 

 

option symbolgen mprint;

 

%include"\\abc.org\HHE\SAS\report\SASfiles\ExportMacro.sas" / lrecl=32767 source2;

 

%export

 

SYMBOLGEN: && resolves to &.

SYMBOLGEN: Macro variable I resolves to 21

SYMBOLGEN: Macro variable X21 resolves to Settings

SYMBOLGEN: Macro variable FOLDER resolves to

'\\abc.org\HHE\SAS\report\SASfiles\&&state.may.xlsx'

MPRINT(EXPORT): PROC EXPORT DATA= Settings

outfile='\\abc.org\HHE\SAS\report\SASfiles\&&state.may.xlsx' dbms=xlsx

replace;

MPRINT(EXPORT): WXLX;

SYMBOLGEN: && resolves to &.

SYMBOLGEN: Macro variable I resolves to 21

SYMBOLGEN: Macro variable X21 resolves to tblSettings

MPRINT(EXPORT): sheet= Settings;

MPRINT(EXPORT): run;

NOTE: The export data set has 384 observations and 2 variables.

NOTE: "\\abc.org\HHE\SAS\report\SASfiles\&&state.may.xlsx" file was

successfully created.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You need double quotes for macro variables to resolve.

View solution in original post

2 REPLIES 2
Reeza
Super User

You need double quotes for macro variables to resolve.

ybz12003
Rhodochrosite | Level 12

Great, it works!  Thank you so much!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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