<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Dowenload results in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Dowenload-results/m-p/786491#M32221</link>
    <description>&lt;P&gt;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 .&lt;/P&gt;</description>
    <pubDate>Fri, 17 Dec 2021 15:57:25 GMT</pubDate>
    <dc:creator>Ragya</dc:creator>
    <dc:date>2021-12-17T15:57:25Z</dc:date>
    <item>
      <title>Dowenload results</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Dowenload-results/m-p/786491#M32221</link>
      <description>&lt;P&gt;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 .&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 15:57:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Dowenload-results/m-p/786491#M32221</guid>
      <dc:creator>Ragya</dc:creator>
      <dc:date>2021-12-17T15:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dowenload results</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Dowenload-results/m-p/786503#M32222</link>
      <description>&lt;P&gt;There's a few ways, one is to go to preferences, under the Results pane, select PDF/RTF etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All output will then go to those file types.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other is to control it within your code so that you can save only select output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
*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;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/409957"&gt;@Ragya&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;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 .&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 16:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Dowenload-results/m-p/786503#M32222</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-17T16:09:15Z</dc:date>
    </item>
  </channel>
</rss>

