Dear experts,
I'd like to run all the programs (110) in a directory on my pc with a single instruction.
How could I do it with %include, or some other code?
The programs have different names and are very long. I'd like not to write them all in the enhanced editor, neither to write all their names...
Many thanks to all.
Daniela
filename x 'c:\temp\*.sas';
%include x/source2;
Do they have to run in a certain order, or will any order be sufficient?
...any order is good
%include is likely to be your best bet.
And you shouldn't have to type anything as any file manager worth it's name should let you copy and paste path and/or file names.
An exercise for the interested reader is to use a FILENAME that consistis of and operating system command to pipe the name of the files using something like DIR c:\path\*.SAS to a data step and then use Call Execute to do the include. NOTE: DO not save the resulting program in the same folder as future runs could create multiple references (or use logic to explicitly NOT use that file for the %include).
Its rarely as simple as pulling in a directory listing and including each file. What about interdependancies? How to QC? Where to send outputs? How to check inputs etc.
filename x 'c:\temp\*.sas';
%include x/source2;
Thank you very much,
it worked!
Daniela
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.