<?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 Re: ODS RTF and PROC REPORT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5186#M2096</link>
    <description>Hi, Phil:&lt;BR /&gt;
  You could experiment with Borderwidth -- which in my Word works for the top and bottom lines:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file='c:\temp\tryjour.rtf' style=journal;&lt;BR /&gt;
proc report data=sashelp.class nowd&lt;BR /&gt;
     style(report)={borderwidth=10};&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
I show it here with a STYLE= statement level override. I think 10 is a bit too big and too bold, but you get the idea.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
    <pubDate>Tue, 23 Oct 2007 19:21:34 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2007-10-23T19:21:34Z</dc:date>
    <item>
      <title>ODS RTF and PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5183#M2093</link>
      <description>I am not sure if this topic has already been discussed, but I am trying to produce an RTF using ODS and PROC REPORT and I am having some problems getting the output to look like I need it to.&lt;BR /&gt;
&lt;BR /&gt;
Specifically, I want to have a bold line between the title and the row headers, as well as between the table and the footnotes.  I tried using RULES=GROUPS, however, this does not give me what I need if the table spans more than 1 page.  Only the last page will display a line before the footnote.&lt;BR /&gt;
&lt;BR /&gt;
Also, I need the footnotes to appear on every page, and since I am using BODYTITLE, it only appears on the last page.&lt;BR /&gt;
&lt;BR /&gt;
Any suggestions on how to get around these issues?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance!!</description>
      <pubDate>Tue, 23 Oct 2007 17:52:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5183#M2093</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-10-23T17:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF and PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5184#M2094</link>
      <description>Hi:&lt;BR /&gt;
  BODYTITLE is working as designed. You can either get the title and footnotes in the header and footer area of the word processor OR you get the TITLE at the top of the table (generally on page 1) and the FOOTNOTE at the end of the table (on page ???) -- by using BODYTITLE.&lt;BR /&gt;
&lt;BR /&gt;
  This may change for SAS 9.2, but for now, this is the way that BODYTITLE works.&lt;BR /&gt;
&lt;BR /&gt;
  So you may have to work with Tech Support to decide whether you want BODYTITLE or not. You can put lines into your RTF file by using RTF control strings as shown in the code at these postings (using BRDRT control string).&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=2830଎" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=2830଎&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=2531ৣ" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=2531ৣ&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
 Another thought is to try the JOURNAL style and see if you like the way that the output looks. When questions like this come up in class, I find that JOURNAL comes closest to the look that most of my students want when they describe this kind of report.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 23 Oct 2007 18:37:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5184#M2094</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-10-23T18:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF and PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5185#M2095</link>
      <description>Cynthia,&lt;BR /&gt;
   Thanks for your response!  I just tried journal, and it does look very close to what I need.  Is there any way to make the "RULES" lines that appear before and after the table thicker, or at least in bold?&lt;BR /&gt;
&lt;BR /&gt;
Thanks again!</description>
      <pubDate>Tue, 23 Oct 2007 18:48:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5185#M2095</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-10-23T18:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF and PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5186#M2096</link>
      <description>Hi, Phil:&lt;BR /&gt;
  You could experiment with Borderwidth -- which in my Word works for the top and bottom lines:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file='c:\temp\tryjour.rtf' style=journal;&lt;BR /&gt;
proc report data=sashelp.class nowd&lt;BR /&gt;
     style(report)={borderwidth=10};&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
I show it here with a STYLE= statement level override. I think 10 is a bit too big and too bold, but you get the idea.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 23 Oct 2007 19:21:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5186#M2096</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-10-23T19:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF and PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5187#M2097</link>
      <description>Cynthia,&lt;BR /&gt;
   Thank you so much!!!  BORDERWIDTH is exactly what I needed, and it worked beautifully.  Thanks again for all of your help!&lt;BR /&gt;
&lt;BR /&gt;
-Phil</description>
      <pubDate>Tue, 23 Oct 2007 19:24:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-and-PROC-REPORT/m-p/5187#M2097</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-10-23T19:24:58Z</dc:date>
    </item>
  </channel>
</rss>

