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?