<?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, PROC REPORT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/971#M468</link>
    <description>Try the following sample code:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
 define style styles.test;&lt;BR /&gt;
 parent=styles.rtf;&lt;BR /&gt;
  style table from output /&lt;BR /&gt;
   frame=hsides&lt;BR /&gt;
   rules=groups;&lt;BR /&gt;
  style header from headersandfooters /&lt;BR /&gt;
   background=_undef_;&lt;BR /&gt;
 end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='test.rtf' style=styles.test;&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods rtf close;</description>
    <pubDate>Wed, 05 Jul 2006 11:49:13 GMT</pubDate>
    <dc:creator>Kathryn_SAS</dc:creator>
    <dc:date>2006-07-05T11:49:13Z</dc:date>
    <item>
      <title>ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/970#M467</link>
      <description>I'm trying to create a style sheet for use with PROC REPORT to produce RTF using SAS 9.1.3.&lt;BR /&gt;
&lt;BR /&gt;
I want my final table to have lines at the top and the bottom of the table but no lines between rows, so am using:&lt;BR /&gt;
&lt;BR /&gt;
STYLE TABLE FROM CONTAINER /&lt;BR /&gt;
    FRAME = HSIDES&lt;BR /&gt;
    RULES = NONE;&lt;BR /&gt;
&lt;BR /&gt;
However I do want lines between rows in the header part of the table.&lt;BR /&gt;
Can someone please help?</description>
      <pubDate>Wed, 05 Jul 2006 11:09:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/970#M467</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-07-05T11:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/971#M468</link>
      <description>Try the following sample code:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
 define style styles.test;&lt;BR /&gt;
 parent=styles.rtf;&lt;BR /&gt;
  style table from output /&lt;BR /&gt;
   frame=hsides&lt;BR /&gt;
   rules=groups;&lt;BR /&gt;
  style header from headersandfooters /&lt;BR /&gt;
   background=_undef_;&lt;BR /&gt;
 end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='test.rtf' style=styles.test;&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods rtf close;</description>
      <pubDate>Wed, 05 Jul 2006 11:49:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/971#M468</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2006-07-05T11:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/972#M469</link>
      <description>That doesn't work.&lt;BR /&gt;
&lt;BR /&gt;
If you change your code to:&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
     columns ("Line one" name) sex age weight height;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
you should be able see what I mean.</description>
      <pubDate>Wed, 05 Jul 2006 17:39:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/972#M469</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-07-05T17:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/973#M470</link>
      <description>Try the following:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define style styles.test;&lt;BR /&gt;
parent=styles.rtf;&lt;BR /&gt;
style table from output /&lt;BR /&gt;
frame=hsides&lt;BR /&gt;
rules=groups;&lt;BR /&gt;
style header from headersandfooters /&lt;BR /&gt;
background=_undef_&lt;BR /&gt;
protectspecialchars=off;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='test.rtf' style=styles.test;&lt;BR /&gt;
&lt;BR /&gt;
proc report data=sashelp.class nowd;&lt;BR /&gt;
columns ("\brdrb\brdrs\brdrw15 Line one" name) sex age weight height;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods rtf close;</description>
      <pubDate>Thu, 06 Jul 2006 11:31:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/973#M470</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2006-07-06T11:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/974#M471</link>
      <description>Hi Kathryn,&lt;BR /&gt;
That does work, but only after a fashion.&lt;BR /&gt;
There are "gaps" between the columns. They aren't necessarily visible on screen unless you zoom in to 150%+, but are clearly visible on printed output.&lt;BR /&gt;
&lt;BR /&gt;
Is there any way of doing this without RTF commands?</description>
      <pubDate>Fri, 07 Jul 2006 09:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/974#M471</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-07-07T09:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS, PROC REPORT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/975#M472</link>
      <description>Hi &lt;BR /&gt;
&lt;BR /&gt;
\brdrb\brdrs\brdrw15 is like drawing a line in a cell. Note the cells will have a padded gap&lt;BR /&gt;
otherwise you may run into a situation where text from one cell look as if it is continous&lt;BR /&gt;
to the next. What you want is to draw the borders - but SAS is not able to do this at the&lt;BR /&gt;
moment.&lt;BR /&gt;
&lt;BR /&gt;
You can draw borders by post-processing.&lt;BR /&gt;
&lt;BR /&gt;
Duong</description>
      <pubDate>Fri, 25 May 2007 01:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PROC-REPORT/m-p/975#M472</guid>
      <dc:creator>Duong</dc:creator>
      <dc:date>2007-05-25T01:44:26Z</dc:date>
    </item>
  </channel>
</rss>

