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
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;
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;
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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.