<?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 PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF/m-p/1626#M734</link>
    <description>I am trying to switch over to PDF output and am having problems getting my ODS PDF output to match my traditional output. I am using PROC TABULATE to make some simple tables and in certain cases I can't get the PDF output to suppress certain header rows.&lt;BR /&gt;
&lt;BR /&gt;
Here is my code:&lt;BR /&gt;
&lt;BR /&gt;
proc tabulate&lt;BR /&gt;
   data=scratch.degrees&lt;BR /&gt;
   format=6.0 missing&lt;BR /&gt;
   formchar='B3C4DAC2BFC3C5B4C0C1D9'X; &lt;BR /&gt;
&lt;BR /&gt;
class ethnalph instcd sx;&lt;BR /&gt;
&lt;BR /&gt;
table instcd=' '*(sx=' ' all*f=4.0) &lt;BR /&gt;
      all='All Institutions'*(sx=' ' all*f=5.0),&lt;BR /&gt;
      ethnalph*f=11.0 all='All Degrees'*f=8.0&lt;BR /&gt;
      / rts=48 misstext='0';&lt;BR /&gt;
&lt;BR /&gt;
keylabel&lt;BR /&gt;
   all  = 'Total'&lt;BR /&gt;
   n    = ' ';&lt;BR /&gt;
&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
My traditional output suppresses the headers associated with the sx variable. My PDF output does not suppress the row header associated with the sx variable except for on the first line, after that those header cells are there (however they have nothing in them).&lt;BR /&gt;
&lt;BR /&gt;
Any help would be greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Vern</description>
    <pubDate>Tue, 24 Oct 2006 17:25:26 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2006-10-24T17:25:26Z</dc:date>
    <item>
      <title>ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF/m-p/1626#M734</link>
      <description>I am trying to switch over to PDF output and am having problems getting my ODS PDF output to match my traditional output. I am using PROC TABULATE to make some simple tables and in certain cases I can't get the PDF output to suppress certain header rows.&lt;BR /&gt;
&lt;BR /&gt;
Here is my code:&lt;BR /&gt;
&lt;BR /&gt;
proc tabulate&lt;BR /&gt;
   data=scratch.degrees&lt;BR /&gt;
   format=6.0 missing&lt;BR /&gt;
   formchar='B3C4DAC2BFC3C5B4C0C1D9'X; &lt;BR /&gt;
&lt;BR /&gt;
class ethnalph instcd sx;&lt;BR /&gt;
&lt;BR /&gt;
table instcd=' '*(sx=' ' all*f=4.0) &lt;BR /&gt;
      all='All Institutions'*(sx=' ' all*f=5.0),&lt;BR /&gt;
      ethnalph*f=11.0 all='All Degrees'*f=8.0&lt;BR /&gt;
      / rts=48 misstext='0';&lt;BR /&gt;
&lt;BR /&gt;
keylabel&lt;BR /&gt;
   all  = 'Total'&lt;BR /&gt;
   n    = ' ';&lt;BR /&gt;
&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
My traditional output suppresses the headers associated with the sx variable. My PDF output does not suppress the row header associated with the sx variable except for on the first line, after that those header cells are there (however they have nothing in them).&lt;BR /&gt;
&lt;BR /&gt;
Any help would be greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Vern</description>
      <pubDate>Tue, 24 Oct 2006 17:25:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF/m-p/1626#M734</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-10-24T17:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF/m-p/1627#M735</link>
      <description>Hi,&lt;BR /&gt;
  Check out this Tech Support note. Generally speaking, you need to specify ROW=FLOAT when you are suppressing headers, as described here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/faq/011/FAQ01127.html" target="_blank"&gt;http://support.sas.com/faq/011/FAQ01127.html&lt;/A&gt; &lt;BR /&gt;
   &lt;BR /&gt;
   Also, you have to be aware that whether ROW=FLOAT works, depends on the level of SAS that you are running. For example, in SAS 8, ROW=FLOAT did NOT work with ODS destinations (only LISTING), but according to this Tech Support note, &lt;A href="http://support.sas.com/techsup/unotes/SN/000/000498.html" target="_blank"&gt;http://support.sas.com/techsup/unotes/SN/000/000498.html&lt;/A&gt;&lt;BR /&gt;
you should find that ROW=FLOAT works, starting with SAS 9.1.&lt;BR /&gt;
  &lt;BR /&gt;
  So your modified TABLE statement options would be:[pre]&lt;BR /&gt;
 table &lt;REST of="" table="" syntax=""&gt;/ row=float rts=48 misstext='0';&lt;BR /&gt;
[/pre]&lt;BR /&gt;
cynthia&lt;/REST&gt;</description>
      <pubDate>Tue, 24 Oct 2006 20:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF/m-p/1627#M735</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2006-10-24T20:42:38Z</dc:date>
    </item>
  </channel>
</rss>

