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?


 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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