BookmarkSubscribeRSS Feed
julieq8880
Calcite | Level 5

Hi,

 

Will someone show me in which  case will the table or report be able to be exported to Powerpoint or word file? also after Every "Proc...run;" ? Thanks!

2 REPLIES 2
PGStats
Opal | Level 21

Powerpoint and RTF are two destinations available in SAS Output Delivery System (ODS). When a destination is open, all procedure output is directed there by default. So, the statements

 

/* Open a destination */
ODS RTF file="c:\temp\myFile.rtf";

/* Create some output */
proc print data=sashelp.class; 
run;

proc univariate data=sashelp.class;
var height weight;
run;

/* Close the destination */
ODS RTF close;

will create a Word compatible file. There are lots of options in ODS to control which output goes to the destination and how it is formatted.

 

PG
CaseySmith
SAS Employee

You can code the ODS statements explicitly as @PGStats showed, or you can check the RTF and/or PowerPoint options in EG's Tools->Options-Results->Results General->Result Formats, which will auto-generate the ODS statements for you in EG's generated wrapper code (which you can see in the log whenever you run code).

 

Casey


Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF

View now: on-demand content for SAS users

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 548 views
  • 0 likes
  • 3 in conversation