Hello,
Although I've been using SAS ince 1983 (HELLLOOOOO JCL & TSO), all my SAS PC work has been on the base, one file per program version. I have a new job where the manager insists on having a process for
I understand his approach but what I don't understand is how EG does this. What I mean is do I save each program separately (ie I'll have 4 programs for transformations) or do I save it all under the EG project, or both?
In a past employer, we tried to use EG and the projects would corrupt, losing our work.
Any guidance is appreciated
Thank you
Paula Sims
You save each program separately and then run them in an EG project using a process flow so that they run after each other or an Ordered List.
If you don't like using EG projects then create a SAS "control" program that runs the individual steps using the %INCLUDE statement:
%include "libnames.sas";
%include "macro_variables.sas";
%include "extractions.sas";
%include "transformations.sas";
%include "reports.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!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.