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';
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 save with the early bird rate—just $795!
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.