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

I can not get this to work. It will not resolve the macro - why ?

 

 

%let dato=%sysfunc(putn(%eval(%sysfunc(today())-2),yymmddn8.));

%put &dato;

 

filename tmp pipe 'dir "C:\SAS\Data\data _&dato._*.zip" /b';

 

Hope you can help

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Macro variables will not resolve inside single quotes.

 

Here's a workaround, you can use the macro variable &str where your FILENAME statement was.

 

%let str=filename tmp pipe %str(%')dir "C:\SAS\Data\data _&dato._*.zip" /b%str(%');
%put &=str;
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Macro variables will not resolve inside single quotes.

 

Here's a workaround, you can use the macro variable &str where your FILENAME statement was.

 

%let str=filename tmp pipe %str(%')dir "C:\SAS\Data\data _&dato._*.zip" /b%str(%');
%put &=str;
--
Paige Miller
ballardw
Super User

Macro variables inside single quotes do not resolve

 

You may want to look at this code:

%let dato=%sysfunc(putn(%eval(%sysfunc(today())-2),yymmddn8.));
%put &dato;

%put in filename: 'dir "C:\SAS\Data\data _&dato._*.zip" /b';

%put in filename double quote: "dir ""C:\SAS\Data\data _&dato._*.zip"" /b";

to see that the macro variable is not resolving.

The second version uses all double quotes and doubles the quotes around the path so that the single double quote doesn't get considered as the matching quote for the first one.

 

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1276 views
  • 2 likes
  • 3 in conversation