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 .