I don't want to start Word in below code.
ods rtf;
proc print data=sashelp.class;
run;
ods rtf close;
How to suppress starting WORD in ods close?
Are you using SAS Enterprise Guide?
You have to disable the option that automatically opens results.
Are you using SAS Enterprise Guide?
You have to disable the option that automatically opens results.
No, I'm using SAS 9.4 Windows version.
But I find the options in preference and I was able to get suppress starting Word.
Thanks!
You could try 'ods noresults'.
ods noresults;
ods rtf;
proc print data=sashelp.class;
run;
ods rtf close;
ods results;
great!
This is what I wanted!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.