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


I have a filename defined in my dataset:

 

filename cm  'k:\may 2015\cm.txt';

and in another program the month and year are defined as:

%let month = may;

%let year = 2015;

when I used the code

filename cm  'k:\&month. &year.\cm.txt';

it doesn't work

1 ACCEPTED SOLUTION

Accepted Solutions
TomKari
Onyx | Level 15

1. As previously mentioned, use double quotes not single.

2. Is your SAS session possibly running on a server that can't see your K: drive?

3. Could the macro variables be local when they're created, not global? In the program that's failing, put in the line

%put &month &year;

to see if the variables have values.

View solution in original post

5 REPLIES 5
Steelers_In_DC
Barite | Level 11

What does the log say?

Reeza
Super User

Macro variables need double quotes to resolve, they won't resolve in single quotes

brophymj
Quartz | Level 8

Log says...

Physical file does not exist,

'k:\&month. &year.\cm.txt'

it doesn't work with double quotations either.

Reeza
Super User

Use the following line to see what the macro variables are resolving to, also, make sure that the file actually exists Smiley Happy

Options symbolgen mprint;

If that doesn't work, post your full code and log.

TomKari
Onyx | Level 15

1. As previously mentioned, use double quotes not single.

2. Is your SAS session possibly running on a server that can't see your K: drive?

3. Could the macro variables be local when they're created, not global? In the program that's failing, put in the line

%put &month &year;

to see if the variables have values.

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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