<?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,Proc report &amp; break (or lack of) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57954#M6945</link>
    <description>Hello all;&lt;BR /&gt;
I am trying to introduce breaks between sections within a proc report statement. This works normally but not within the ODS statements as I read in the SAS guide to Report Writing. &lt;BR /&gt;
&lt;BR /&gt;
Is there is an easy way to create white speaces between sections? &lt;BR /&gt;
Pertinent code follows below. Thank you. &lt;BR /&gt;
&lt;BR /&gt;
Lawrence &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc report data=priormonth nowd ;&lt;BR /&gt;
column header _label_ bwcat1 bwcat2 bwcat3 bwcat4 bwcat5 total ;&lt;BR /&gt;
&lt;BR /&gt;
define header /order format=H. Width=20 ' ' style={background=lavender} ;&lt;BR /&gt;
&lt;BR /&gt;
define _label_ /width=20 "    " ;&lt;BR /&gt;
define bwcat1 / "BWCAT1 (0-750 grams)" format=5.0  ;&lt;BR /&gt;
define bwcat2 /"BWCAT2 (750 - 1000 grams)" format=5.0 ;&lt;BR /&gt;
define bwcat3 /"BWCAT3 (1001 - 1500 grams)" format=5.0  ;&lt;BR /&gt;
define bwcat4 /"BWCAT4 (1501 - 2500 grams)" format=5.0 ;&lt;BR /&gt;
define bwcat5 /"BWCAT5 (&amp;gt;2500 grams)" format=5.0 ;&lt;BR /&gt;
define total /"TOTAL*"  format=5.0 style={background=gold};&lt;BR /&gt;
break after header /skip;</description>
    <pubDate>Wed, 29 Oct 2008 21:56:22 GMT</pubDate>
    <dc:creator>_LB</dc:creator>
    <dc:date>2008-10-29T21:56:22Z</dc:date>
    <item>
      <title>ODS,Proc report &amp; break (or lack of)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57954#M6945</link>
      <description>Hello all;&lt;BR /&gt;
I am trying to introduce breaks between sections within a proc report statement. This works normally but not within the ODS statements as I read in the SAS guide to Report Writing. &lt;BR /&gt;
&lt;BR /&gt;
Is there is an easy way to create white speaces between sections? &lt;BR /&gt;
Pertinent code follows below. Thank you. &lt;BR /&gt;
&lt;BR /&gt;
Lawrence &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc report data=priormonth nowd ;&lt;BR /&gt;
column header _label_ bwcat1 bwcat2 bwcat3 bwcat4 bwcat5 total ;&lt;BR /&gt;
&lt;BR /&gt;
define header /order format=H. Width=20 ' ' style={background=lavender} ;&lt;BR /&gt;
&lt;BR /&gt;
define _label_ /width=20 "    " ;&lt;BR /&gt;
define bwcat1 / "BWCAT1 (0-750 grams)" format=5.0  ;&lt;BR /&gt;
define bwcat2 /"BWCAT2 (750 - 1000 grams)" format=5.0 ;&lt;BR /&gt;
define bwcat3 /"BWCAT3 (1001 - 1500 grams)" format=5.0  ;&lt;BR /&gt;
define bwcat4 /"BWCAT4 (1501 - 2500 grams)" format=5.0 ;&lt;BR /&gt;
define bwcat5 /"BWCAT5 (&amp;gt;2500 grams)" format=5.0 ;&lt;BR /&gt;
define total /"TOTAL*"  format=5.0 style={background=gold};&lt;BR /&gt;
break after header /skip;</description>
      <pubDate>Wed, 29 Oct 2008 21:56:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57954#M6945</guid>
      <dc:creator>_LB</dc:creator>
      <dc:date>2008-10-29T21:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS,Proc report &amp; break (or lack of)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57955#M6946</link>
      <description>It would help to also include your ODS statement usage, since the SAS behavior may be different depending on whether it is HTML, PDF, etc.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 30 Oct 2008 02:25:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57955#M6946</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2008-10-30T02:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS,Proc report &amp; break (or lack of)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57956#M6947</link>
      <description>Hi:&lt;BR /&gt;
  It is true that the SKIP option does not work with ODS in the manner that it works with LISTING.&lt;BR /&gt;
  &lt;BR /&gt;
  However, you CAN use a LINE statement with ODS and PROC REPORT to accomplish the same thing that SKIP does. Relevant code snippet below.&lt;BR /&gt;
&lt;BR /&gt;
(PS: WIDTH= is also ignored by ODS ... see this link for more "workarounds" for LISTING options that are not used by ODS (such as HEADLINE, WIDTH, etc)&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/2/549.html" target="_blank"&gt;http://support.sas.com/kb/2/549.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/templateFAQ/report1.html)" target="_blank"&gt;http://support.sas.com/rnd/base/ods/templateFAQ/report1.html)&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
define header /order format=H. Width=20 ' ' style={background=lavender} ;&lt;BR /&gt;
... more code ...&lt;BR /&gt;
break after header /skip; &lt;BR /&gt;
compute after header;&lt;BR /&gt;
   line ' ';&lt;BR /&gt;
endcomp;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Thu, 30 Oct 2008 22:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Proc-report-break-or-lack-of/m-p/57956#M6947</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-10-30T22:14:07Z</dc:date>
    </item>
  </channel>
</rss>

