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

hi everyone,

im trying to use a macro variable in a name literal to reference an excel sheet but it is not working for me. i can get the libname statement to work but not the data step. is there anyway to evaluate a macro variable inside the name literal? here is my code and error:

%let prot=132;

libname stabdata "C:\Desktop\p&prot..xlsx";

data p&prot.data; set stabdata.'p&prot.data$'n; run;

libname stabdata clear;

i would like the data step to evaluate as data p132data; set stabdata.'p132data$'n; run; but i get the following error

data p&prot.data; set stabdata.'p&prot.data$'n; run;

ERROR: File STABDATA.'p&prot.data$'n.DATA does not exist.

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Macro variables do not expand within single quotes. Convert to using double quotes.

stabdata."p&prot.data$"n;

View solution in original post

4 REPLIES 4
Haikuo
Onyx | Level 15

In your SAS explorer or open the excel sheet, get the sheet name you need. I suspect that you don't have a sheet name called p123data.

Haikuo

spirto
Quartz | Level 8

Haikuo-

i checked SAS explorer and the excel sheet is listed. I believe the problem is that the macro variable is not being resolved.

if i manually change the stabdata.'p&prot.data$'n to stabdata.'p132data$'n then everything works ok

Tom
Super User Tom
Super User

Macro variables do not expand within single quotes. Convert to using double quotes.

stabdata."p&prot.data$"n;

spirto
Quartz | Level 8

Excellent!! I didn't know that SAS literals worked with double quotes...I was always under the impression that name, time, date, etc literals needed single quotes.

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