I work with SAS EG. I use proc printto to save log output into specified location. I hope it can be used also for output. proc printto log='Path of the file' new; run; The keyword NEW will update the file every time you run the code. To cancel this: proc printto; run; Hope it will help.
... View more