BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
jamal01
Fluorite | Level 6

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

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

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;
--
Paige Miller

View solution in original post

2 REPLIES 2
PaigeMiller
Diamond | Level 26

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;
--
Paige Miller
jamal01
Fluorite | Level 6

That worked, thank you PaigeMiller!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 408 views
  • 2 likes
  • 2 in conversation