BookmarkSubscribeRSS Feed
Ragya
Fluorite | Level 6

hi, i am using SAS online studio and i need to know how to download the results as RTF , word DOC or excel sheet instead of PDF .

1 REPLY 1
Reeza
Super User

There's a few ways, one is to go to preferences, under the Results pane, select PDF/RTF etc. 

All output will then go to those file types. 

 

The other is to control it within your code so that you can save only select output. 

 


*not output to PDF file;
proc means data=sashelp.class n mean min max;
var age;
ods output summary=want;
run;

*not output to pdf file;
proc freq data=sashelp.class;
table age;
run;

*anything between ODS PDF /PDF CLOSE will be saved to PDF files;
ods pdf file='/home/ragya/results_2021-12-17.pdf';

proc print data=want;
run;


ods pdf close;

@Ragya wrote:

hi, i am using SAS online studio and i need to know how to download the results as RTF , word DOC or excel sheet instead of PDF .


 

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

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
  • 1 reply
  • 442 views
  • 0 likes
  • 2 in conversation