<?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 proc tabulate: removing table outlines and exporting to pdf in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837616#M331206</link>
    <description>&lt;P&gt;Dear all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have being tring to remove the table outlines in proc tabulate without any success.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I use the the FORMCHAR= option statement it works in the result viewer but in the pdf destination&lt;/P&gt;
&lt;P&gt;this doesn't show. Please any help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If possible, I will like to remove all row and column outlines&amp;nbsp; or probably substitute this with short dashes maybe.&lt;/P&gt;
&lt;P&gt;Here the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="mypath\test.pdf";
proc tabulate data=sashelp.cars format=6.0 style=[font_size=5pt just=c cellwidth=10 fontstyle=italic] formchar= '  ' noseps;
where make in ("Acura", "Audi", "BMW");
class make type origin / order=data style=[textalign=center ] missing;
  classlev make type origin/ style=[background=white font_weight=bold font_size=5pt foreground=dimgray cellpadding=0 ];
   var  MSRP /;
   table type*MSRP='' *sum='' ,
         make=''*origin='' / row=float nocontinued indent=3 rts=8  misstext=[label=" " ] style=[cellpadding=5]
         box=[label='Type ' style=[background=white foreground=dimgray font_weight=bold font_size=5pt ]];
run;

ods pdf close;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thanks for any help&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2022 08:10:58 GMT</pubDate>
    <dc:creator>Anita_n</dc:creator>
    <dc:date>2022-10-10T08:10:58Z</dc:date>
    <item>
      <title>proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837616#M331206</link>
      <description>&lt;P&gt;Dear all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have being tring to remove the table outlines in proc tabulate without any success.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I use the the FORMCHAR= option statement it works in the result viewer but in the pdf destination&lt;/P&gt;
&lt;P&gt;this doesn't show. Please any help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If possible, I will like to remove all row and column outlines&amp;nbsp; or probably substitute this with short dashes maybe.&lt;/P&gt;
&lt;P&gt;Here the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="mypath\test.pdf";
proc tabulate data=sashelp.cars format=6.0 style=[font_size=5pt just=c cellwidth=10 fontstyle=italic] formchar= '  ' noseps;
where make in ("Acura", "Audi", "BMW");
class make type origin / order=data style=[textalign=center ] missing;
  classlev make type origin/ style=[background=white font_weight=bold font_size=5pt foreground=dimgray cellpadding=0 ];
   var  MSRP /;
   table type*MSRP='' *sum='' ,
         make=''*origin='' / row=float nocontinued indent=3 rts=8  misstext=[label=" " ] style=[cellpadding=5]
         box=[label='Type ' style=[background=white foreground=dimgray font_weight=bold font_size=5pt ]];
run;

ods pdf close;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thanks for any help&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 08:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837616#M331206</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-10T08:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837639#M331216</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="c:\temp\test.pdf" style=journal;
proc tabulate data=sashelp.cars format=6.0 style=[font_size=5pt just=c cellwidth=10 fontstyle=italic  bordertopcolor=white  borderbottomcolor=white] formchar= '  ' noseps;
where make in ("Acura", "Audi", "BMW");
class make type origin / order=data style=[textalign=center bordertopcolor=white  borderbottomcolor=white] missing;
  classlev make type origin/ style=[background=white font_weight=bold font_size=5pt foreground=dimgray cellpadding=0  bordertopcolor=white  borderbottomcolor=white];
   var  MSRP /;
   table type*MSRP='' *sum='' ,
         make=''*origin='' / row=float nocontinued indent=3 rts=8  misstext=[label=" " ] style=[cellpadding=5]
         box=[label='Type ' style=[background=white foreground=dimgray font_weight=bold font_size=5pt  bordertopcolor=white  borderbottomcolor=white]];
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1665401700717.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76049iEA5E48653D588616/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1665401700717.png" alt="Ksharp_0-1665401700717.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 11:35:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837639#M331216</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-10-10T11:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837649#M331220</link>
      <description>Is there also a way to use short dashes</description>
      <pubDate>Mon, 10 Oct 2022 12:06:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837649#M331220</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-10T12:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837654#M331223</link>
      <description>&lt;P&gt;Sorry. I can't help you. Maybe&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; knew the solution.&lt;/P&gt;
&lt;P&gt;style "BORDERBOTTOMSTYLE=" is only valid in&amp;nbsp;Markup family, PowerPoint, Excel, RTF, and Measured RTF destinations,NOT pdf .&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1665405391936.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76051i6AA0855990F3FC65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1665405391936.png" alt="Ksharp_0-1665405391936.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The following is from HTML:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_1-1665405457243.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76052i457F1D365793D227/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_1-1665405457243.png" alt="Ksharp_1-1665405457243.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;
ods pdf file="c:\temp\test.pdf" style=pearl;
proc tabulate data=sashelp.cars format=6.0 style=[font_size=5pt just=c cellwidth=10 fontstyle=italic   borderbottomstyle=dashed BORDERBOTTOMWIDTH=2] formchar= '  ' noseps;
where make in ("Acura", "Audi", "BMW");
class make type origin / order=data style=[textalign=center  borderbottomstyle=dashed  BORDERBOTTOMWIDTH=2] missing;
  classlev make type origin/ style=[background=white font_weight=bold font_size=5pt  cellpadding=0   borderbottomstyle=dashed  BORDERBOTTOMWIDTH=2];
   var  MSRP /;
   table type*MSRP='' *sum='' ,
         make=''*origin='' / row=float nocontinued indent=3 rts=8  misstext=[label=" " ] style=[cellpadding=5]
         box=[label='Type ' style=[background=white  font_weight=bold font_size=5pt   borderbottomstyle=dashed  BORDERBOTTOMWIDTH=2]];
run;

ods pdf close;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Oct 2022 12:37:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837654#M331223</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-10-10T12:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837658#M331225</link>
      <description>Thankyou &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Mon, 10 Oct 2022 13:17:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837658#M331225</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-10T13:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837960#M331338</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One way to remove all the lines without changing the borders is to use the RULES and FRAME attributes as style overrides on the TABLE statement, as shown below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1665530417068.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/76098iA4D3B08A72A27587/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1665530417068.png" alt="Cynthia_sas_0-1665530417068.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You asked later about having the lines made up of short dashes, that harkens back to old LISTING style output. If find the dashes as borders to be very distracting. However, if you need/want to do that, then you'll need to move into the world of style overrides for the border settings. You'll have to look in the documentation though, I am not sure that PDF will support a line style of dashes for the borders; although RTF might.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Cynthia&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 23:22:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/837960#M331338</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2022-10-11T23:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate: removing table outlines and exporting to pdf</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/838008#M331367</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;: thank you Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 11:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-removing-table-outlines-and-exporting-to-pdf/m-p/838008#M331367</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-12T11:11:25Z</dc:date>
    </item>
  </channel>
</rss>

