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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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