BookmarkSubscribeRSS Feed
azorachase
Calcite | Level 5

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!

 

3 REPLIES 3
ballardw
Super User

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.

azorachase
Calcite | Level 5

Thanks so much! Is there code to delete the date, time and page number that automatically appears in the RTF?

Reeza
Super User

Options nodate nonumber;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Discussion stats
  • 3 replies
  • 1304 views
  • 0 likes
  • 3 in conversation