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

Let's say I have 10 SAS programs that each have the following at the top:

Libname MyLib "E:\MySASFiles";

Is there a way to only change the directory name in one of the programs and let the rest update auto-magically? I'm thinking %Include but i'm not familiar enough with this option. Any Hints?

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Create a single .sas program that assigns libs.

Then put a %include at the top of your programs that includes the file above.

But that assumes you're not using the same name for diff libraries in different programs which I've also seen.

View solution in original post

4 REPLIES 4
Reeza
Super User

Create a single .sas program that assigns libs.

Then put a %include at the top of your programs that includes the file above.

But that assumes you're not using the same name for diff libraries in different programs which I've also seen.

jwillis
Quartz | Level 8

Another option is to make 'E:\MySASFiles' a macro value and change all your libname statements to be

Libname MyLib "&mylib."; then, in the first program code %global mylib; %let mylib = E:\MySASFiles;


ballardw
Super User

For the libraries I use all of the time I have assignments in my autoexec.sas. I know that is "old school" BUT if I reconfigure my machine I only need to change the libname in one place.

I do not repeat the library assignments in each program.

Ksharp
Super User

I would like to use CALL EXECUTE .

data fold;

input f : $40.;

cards;

c:\x

d:\d

;

run;

data _null_;

set fold;

call execute('%let f='||f ||' ; ');

call execute('%include a1 ;  ');

call execute('%include a2 ;  ');

call execute('%include a3 ;  ');

call execute('%include a4 ;  ');

run;

and change libname statement in all of program.

Libname MyLib " &f ";



Ksharp

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

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