<?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: Create a line at the bottom of the report using Proc Report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665509#M199003</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326171"&gt;@Sarah-R&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would the option&amp;nbsp;style=journal in your ODS statement be convenient?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;e.g.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="xxx/xxx.pdf" style=journal;

proc report data=sashelp.class;
	...;
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Otherwise, you can have more control by using a COMPUTE AFTER _PAGE_ statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	compute after _page_ / style={bordertopcolor=black bordertopwidth=.2in};
		line ' ';
	endcomp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
    <pubDate>Sat, 27 Jun 2020 09:31:51 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-06-27T09:31:51Z</dc:date>
    <item>
      <title>Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665501#M198996</link>
      <description>&lt;P&gt;How do I create a line at the bottom of the report using Proc Report that simply goes across the bottom border?&lt;/P&gt;&lt;P&gt;_______________________________&lt;/P&gt;&lt;P&gt;Header section&lt;/P&gt;&lt;P&gt;_______________________________&lt;/P&gt;&lt;P&gt;Column/Report section&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;_______________________________ &amp;lt;-- I want to produce this line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I produce a line at the bottom of the report?&amp;nbsp; There is a line already, but I would like it to be more visible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried borderbottomwidth=.2in and borderbottomcolor=black as in the following in the Proc Report statement but this does not work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Report data=sashelp.class&amp;nbsp;&amp;nbsp;&amp;nbsp; split='/'&lt;/P&gt;&lt;P&gt;style(header)={...}&lt;/P&gt;&lt;P&gt;style(column)={...}&lt;/P&gt;&lt;P&gt;style(report)={borderbottomwidth=.2in&amp;nbsp;&amp;nbsp; borderbottomcolor=black &amp;nbsp;&amp;nbsp; just=center};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS University Edition.&amp;nbsp; There is a note that may hint at the source of the problem:&lt;/P&gt;&lt;PRE class="sasLog"&gt; NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I use the two border settings in style(column) it gives a bottom border at the end of every row:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Report data=sashelp.class&amp;nbsp;&amp;nbsp;&amp;nbsp; split='/'&lt;/P&gt;&lt;P&gt;style(header)={...}&lt;/P&gt;&lt;P&gt;style(column)={borderbottomwidth=.2in&amp;nbsp;&amp;nbsp; borderbottomcolor=black &amp;nbsp;}&lt;/P&gt;&lt;P&gt;style(report)={ just=center};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 08:04:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665501#M198996</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-06-27T08:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665504#M198999</link>
      <description>&lt;P&gt;I use the following as final lines of code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
compute after _PAGE_	/style=[background=lightgrey];
line ' ';
endcomp;

run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 27 Jun 2020 08:42:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665504#M198999</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2020-06-27T08:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665509#M199003</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326171"&gt;@Sarah-R&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would the option&amp;nbsp;style=journal in your ODS statement be convenient?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;e.g.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="xxx/xxx.pdf" style=journal;

proc report data=sashelp.class;
	...;
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Otherwise, you can have more control by using a COMPUTE AFTER _PAGE_ statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	compute after _page_ / style={bordertopcolor=black bordertopwidth=.2in};
		line ' ';
	endcomp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 09:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665509#M199003</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-06-27T09:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665511#M199004</link>
      <description>&lt;P&gt;&lt;FONT color="#CC99FF"&gt;The latter worked stellar!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#33CCCC"&gt;Thank you so, so much&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;&lt;/FONT&gt;!&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 09:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665511#M199004</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-06-27T09:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665513#M199005</link>
      <description>Thank you so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/326171"&gt;@Sarah-R&lt;/a&gt;!</description>
      <pubDate>Sat, 27 Jun 2020 09:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665513#M199005</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-06-27T09:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665514#M199006</link>
      <description>&lt;P&gt;&lt;FONT color="#339966"&gt;Excellent!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#33CCCC"&gt;Thank you&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18293"&gt;@Norman21&lt;/a&gt;&lt;FONT color="#33CCCC"&gt;!&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080"&gt;I highly appreciate your solution!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 10:01:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665514#M199006</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-06-27T10:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line at the bottom of the report using Proc Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665515#M199007</link>
      <description>&lt;P&gt;My hardest effort is far below your easiest effort.&amp;nbsp; I have a lot to go, &lt;FONT face="arial,helvetica,sans-serif" color="#99CC00"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292097"&gt;@ed_sas_member&lt;/a&gt;.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 10:07:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-line-at-the-bottom-of-the-report-using-Proc-Report/m-p/665515#M199007</guid>
      <dc:creator>Sarah-R</dc:creator>
      <dc:date>2020-06-27T10:07:28Z</dc:date>
    </item>
  </channel>
</rss>

