<?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 ODS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44582#M11775</link>
    <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Kindly have  a  look at the code and problem that i'm stucked in below :&lt;BR /&gt;
&lt;BR /&gt;
Code -&lt;BR /&gt;
&lt;BR /&gt;
ods rtf file='est4.rtf'/*initialise the RTF file est4 and send the    results to the file est4.rtf until the file is closed*/;&lt;BR /&gt;
title 'Regression model';&lt;BR /&gt;
proc reg data = review1 outest = est4;&lt;BR /&gt;
		model Z =  X Y U V / SELECTION = rsquare cp aic sbc b best=3;&lt;BR /&gt;
RUN;&lt;BR /&gt;
quit;&lt;BR /&gt;
ods rtf close /* close the RTF file est4*/;&lt;BR /&gt;
&lt;BR /&gt;
Querry-&lt;BR /&gt;
What code should i use so that the output is printed exactly what is in the output file 'est4' as i do not get the Root Mean Squared Error column that is in the file 'est4' in the word file that gets opened when i use ODS command in the above code &lt;BR /&gt;
&lt;BR /&gt;
kindest regards,&lt;BR /&gt;
Mark</description>
    <pubDate>Tue, 06 Jul 2010 04:01:03 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2010-07-06T04:01:03Z</dc:date>
    <item>
      <title>ODS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44582#M11775</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Kindly have  a  look at the code and problem that i'm stucked in below :&lt;BR /&gt;
&lt;BR /&gt;
Code -&lt;BR /&gt;
&lt;BR /&gt;
ods rtf file='est4.rtf'/*initialise the RTF file est4 and send the    results to the file est4.rtf until the file is closed*/;&lt;BR /&gt;
title 'Regression model';&lt;BR /&gt;
proc reg data = review1 outest = est4;&lt;BR /&gt;
		model Z =  X Y U V / SELECTION = rsquare cp aic sbc b best=3;&lt;BR /&gt;
RUN;&lt;BR /&gt;
quit;&lt;BR /&gt;
ods rtf close /* close the RTF file est4*/;&lt;BR /&gt;
&lt;BR /&gt;
Querry-&lt;BR /&gt;
What code should i use so that the output is printed exactly what is in the output file 'est4' as i do not get the Root Mean Squared Error column that is in the file 'est4' in the word file that gets opened when i use ODS command in the above code &lt;BR /&gt;
&lt;BR /&gt;
kindest regards,&lt;BR /&gt;
Mark</description>
      <pubDate>Tue, 06 Jul 2010 04:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44582#M11775</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-07-06T04:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44583#M11776</link>
      <description>Hi:&lt;BR /&gt;
  The tabular output from PROC REG is being routed to the ODS RTF file. The output dataset, WORK.EST4 (from your OUTEST= option) is NOT being routed to the RTF file. It is sitting in the WORK library. &lt;BR /&gt;
&lt;BR /&gt;
  If you want to see what's inside the WORK.EST4 file, as you would see, if you did a PROC PRINT, then I suggest that you put a PROC PRINT step for WORK.EST4 before your ODS RTF CLOSE; statement. Just because you name the RTF file EST4.RTF does not mean that the dataset WORK.EST4 will automatically be routed to the RTF file.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 06 Jul 2010 04:58:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44583#M11776</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-07-06T04:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44584#M11777</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
As Cynthia@sas said add a proc print statement.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
title 'Regression model';&lt;BR /&gt;
proc reg data = review1 outest = est4;&lt;BR /&gt;
model Z = X Y U V / SELECTION = rsquare cp aic sbc b best=3;&lt;BR /&gt;
RUN;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
ods rtf file='est4.rtf'/*initialise the RTF file est4 and send the results to the file est4.rtf until the file is closed*/;&lt;BR /&gt;
  proc print data=est4;&lt;BR /&gt;
    title'               ';&lt;BR /&gt;
  run;  &lt;BR /&gt;
ods rtf close /* close the RTF file est4*/;&lt;BR /&gt;
&lt;BR /&gt;
Sandhya.</description>
      <pubDate>Tue, 06 Jul 2010 15:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ODS/m-p/44584#M11777</guid>
      <dc:creator>Sandhya</dc:creator>
      <dc:date>2010-07-06T15:19:54Z</dc:date>
    </item>
  </channel>
</rss>

