Hello,
I have a large dataset that I am performing calculations with, and printing pdf results.
The main problem I am facing is trying to save the log output.
I searched through all my output files, but couldn't find a copy of the log.
Is there any way to save output data that is only displayed in the log?
For reference, I am using proc optmodel for this table.
Thank you
This output should not be going to the log, but if it is in the log you can always save it using File->Save As.
Better, set the ODS destination to someplace you want such as text file, HTML file, Excel file, PDF file.
Example to create a text file
ods listing file="G:\foldername\filename.txt";
proc something;
/* More commands */
run;
ods listing close;
This output should not be going to the log, but if it is in the log you can always save it using File->Save As.
Better, set the ODS destination to someplace you want such as text file, HTML file, Excel file, PDF file.
Example to create a text file
ods listing file="G:\foldername\filename.txt";
proc something;
/* More commands */
run;
ods listing close;
That worked, thank you PaigeMiller!
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.