Hello,
I would like to use proc sgplot to create a chart, and then embed the resulting graphic into a microsoft word document. Is there code that will automate this process (i.e., so I don't have to manually open up Microsoft word to enter the chart?).
Thanks for your help!
ods rtf file='c:/path/yourdocumentname.rtf' ;
<your sgplot goes here, actually any other procedure output you want>
ods rtf close;
creates RTF that Word can open.
You may need to specify a style on the ODS RTF statement as the default for RTF may be gray scale, something like style=HTMLBlue or whatever.
Thanks so much! Is there code to delete the date, time and page number that automatically appears in the RTF?
Options nodate nonumber;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →