BookmarkSubscribeRSS Feed
julieq8880
Calcite | Level 5

How can I export the table and figure to word file or powerpoint files and also print the tables and figures?

2 REPLIES 2
Reeza
Super User

On Demand is very different than SAS UE so you do need to be clear on which you're using. On Demand operates in the cloud, whereas SAS UE runs locally (assuming you're not use Amazon Web Services. They also have different licenses and modules. 

 

 

You should look into ODS to get output to RTF which Word will open as a Word doc or PPTX to get a native PowerPoint document. 

 

ods powerpoint file='/folders/myfolders/demo_PP.pptx' style=seaside;
ods rtf file='/folders/myfolders/demo_Word.rtf' style=meadow;

proc means data=sashelp.class;
run;

ods powerpoint close;
ods rtf close;

Check the shared folder for the output and see if it meets your needs.

 


@julieq8880 wrote:

How can I export the table and figure to word file or powerpoint files and also print the tables and figures?


 

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1579 views
  • 0 likes
  • 3 in conversation