Hi all SAS Users,
I am wondering if there is any chance that I can run two programs continuously in SAS EG without clicking or else.
For example, I have two SAS programs here
How come I let the program 25th_March part 2 run right after program 25th_March part 1 finish running with one set up in advance?
Warmest regards.
@Phil_NZ - If you run a second program in EG while the first program is running then EG will automatically queue the second program and run it after the first one finishes. Alternately you could create a third program that runs the other two one after the other using the %INCLUDE statement:
%include '\MyPgmFolder\pgm1.sas';
%include '\MyPgmFolder\pgm2.sas';
@Phil_NZ - If you run a second program in EG while the first program is running then EG will automatically queue the second program and run it after the first one finishes. Alternately you could create a third program that runs the other two one after the other using the %INCLUDE statement:
%include '\MyPgmFolder\pgm1.sas';
%include '\MyPgmFolder\pgm2.sas';
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.