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

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

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
filename x 'c:\temp\*.sas';
%include x/source2;

View solution in original post

6 REPLIES 6
Astounding
PROC Star

Do they have to run in a certain order, or will any order be sufficient?

Daniela_P
Obsidian | Level 7

...any order is good

ballardw
Super User

%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).

RW9
Diamond | Level 26 RW9
Diamond | Level 26

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.

Ksharp
Super User
filename x 'c:\temp\*.sas';
%include x/source2;
Daniela_P
Obsidian | Level 7

Thank you very much,

it worked!

Daniela

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 6 replies
  • 5431 views
  • 2 likes
  • 5 in conversation