/***************************************************************************************************************** SAS file name: Autoexec_Example.sas File location: _________________________________________________________________________________________________________________ Purpose: To demonstrate how to set up and use the SAS Autoexec file at start up Author: Peter Clemmensen Creation Date: 01/12/2017 This program supports the blog post "Using the Autoexec File at Startup in SAS" on SASnrd.com *****************************************************************************************************************/ /* Point to libraries you frequently use */ %let path=/*** Insert path here ***/ libname MyLib "&path."; /* Set up library of compiled macros */ %let macpath=/*** Insert path to macros here ***/ libname mymacs "&macpath."; options mstored sasmstore=mymacs; /* Say welcome in the log */ %put ************************************************************************************; %put * *; %put * *; %put Welcome back &SYSUSERID.! Its &SYSTIME. and time to get SASsy. Have Fun! ; %put * *; %put * *; %put ************************************************************************************;