<?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: Proc Template bottom line before printing footnotes in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/736040#M229296</link>
    <description>&lt;BR /&gt;options ls=256 ps=44 orientation=landscape missing=""&lt;BR /&gt;topmargin="1in" bottommargin="1in" leftmargin="1in" rightmargin="1in"&lt;BR /&gt;nonumber nodate;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods escapechar='~';&lt;BR /&gt;ods rtf file="..\..\Output\TLF\&amp;amp;ofilename..rtf" style=styles.lrtftmpl;&lt;BR /&gt;ods listing close;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc report data=final split="^" headline headskip missing nowd spacing=2&lt;BR /&gt;style(header)={fontweight=medium protectspecialchars=off background=_undef_ asis=on};&lt;BR /&gt;column kppg kppg2 ord cnt aperiod avisitn col1 col2 col3 col4 col5 col6 col7 col8 ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;define kppg / group order order=data noprint;&lt;BR /&gt;define kppg2 / group order order=data noprint;&lt;BR /&gt;define ord / group order order=data noprint;&lt;BR /&gt;define cnt / group order order=data noprint;&lt;BR /&gt;&lt;BR /&gt;define aperiod / group order order=data noprint;&lt;BR /&gt;define avisitn / group order order=data noprint;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;define col1 / order "Visit^ SF-36 Component" order=data style(column)=[cellwidth=22% asis=on] style(header)=[just=l asis=on] ;&lt;BR /&gt;define col2 / display "Statistic" style(column)=[cellwidth=9% asis=on] style(header)=[just=l asis=on];&lt;BR /&gt;define col3 / display "Placebo Only^(1 or 2 Enemas)(N=&amp;amp;N1)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;define col4 / display "1 Enema of^RBX2660^(N=&amp;amp;N2)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;define col5 / display "2 Enemas of^RBX2660^(N=&amp;amp;N3)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col6 / display "3 Enemas of^RBX2660^(N=&amp;amp;N4)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col7 / display "4 Enemas of^RBX2660^(N=&amp;amp;N5)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col8 / display "Total^(N=&amp;amp;N9)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;&lt;BR /&gt;break after kppg/page;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compute before kppg;&lt;BR /&gt;line @1 ' ';&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compute after kppg2;&lt;BR /&gt;line @1 ' ';&lt;BR /&gt;endcomp;&lt;BR /&gt;/* */&lt;BR /&gt;/* compute after brk;*/&lt;BR /&gt;/* line @1 ' ';*/&lt;BR /&gt;/* endcomp;*/&lt;BR /&gt;&lt;BR /&gt;***Add extra line above the column headers;&lt;BR /&gt;compute before _page_ / style = {just = left asis = on pretext = "~R/RTF'\brdrt\brdrs\brdrw10 '"};&lt;BR /&gt;line @2 " ";&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;***Add extra line at bottom of page;&lt;BR /&gt;compute after _page_ / style = {just = left asis = on pretext = "~R/RTF'\brdrt\brdrs\brdrw10 '"};&lt;BR /&gt;line @2 " ";&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;here is an example of the proc report.</description>
    <pubDate>Wed, 21 Apr 2021 15:47:08 GMT</pubDate>
    <dc:creator>chrissowden</dc:creator>
    <dc:date>2021-04-21T15:47:08Z</dc:date>
    <item>
      <title>Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735546#M229142</link>
      <description>&lt;P&gt;I am trying to get a bold bottom line above the footnotes sections. Currently the only way I can get the line above the footnotes is in Proc Report with the break after function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro template;&lt;BR /&gt;ods path(prepend) work.SPstyles(update);&lt;/P&gt;&lt;P&gt;PROC TEMPLATE;&lt;BR /&gt;DEFINE STYLE styles.landscape8;&lt;BR /&gt;PARENT=styles.rtf;&lt;BR /&gt;REPLACE fonts /&lt;BR /&gt;'TitleFont2' = ("Courier New, courier",8pt)&lt;BR /&gt;'TitleFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'StrongFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'EmphasisFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'FixedEmphasisFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'FixedStrongFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'FixedHeadingFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'BatchFixedFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'FixedFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'headingEmphasisFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'headingFont' = ("Courier New, courier",8pt)&lt;BR /&gt;'docFont' = ("Courier New, courier",8pt);&lt;/P&gt;&lt;P&gt;style table from table / background = _undef_ rules=groups cellspacing=0&lt;BR /&gt;cellpadding=0pt bordertopwidth=7 bordertopcolor=white frame=above width=100%;&lt;/P&gt;&lt;P&gt;style systemfooter from systemfooter / protectspecialchars=off;&lt;/P&gt;&lt;P&gt;style parskip / fontsize = 1pt;&lt;BR /&gt;&lt;BR /&gt;REPLACE headersAndFooters FROM CELL / background = _undef_&lt;BR /&gt;font=fonts('HeadingFont')&lt;BR /&gt;foreground=black&lt;BR /&gt;background=white;&lt;/P&gt;&lt;P&gt;REPLACE BODY from DOCUMENT /&lt;BR /&gt;bottommargin=.1in&lt;BR /&gt;topmargin=1in&lt;BR /&gt;rightmargin=1in&lt;BR /&gt;leftmargin=1in;&lt;/P&gt;&lt;P&gt;END;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC TEMPLATE;&lt;BR /&gt;DEFINE STYLE styles.patprof;&lt;BR /&gt;PARENT=styles.rtf;&lt;BR /&gt;REPLACE fonts /&lt;BR /&gt;'TitleFont2' = ("Courier New",8pt)&lt;BR /&gt;'TitleFont' = ("Courier New",8pt)&lt;BR /&gt;'StrongFont' = ("Courier New",8pt,bold)&lt;BR /&gt;'EmphasisFont' = ("Courier New",8pt,italic)&lt;BR /&gt;'FixedEmphasisFont' = ("Courier New",8pt,italic)&lt;BR /&gt;'FixedStrongFont' = ("Courier New",8pt,bold)&lt;BR /&gt;'FixedHeadingFont' = ("Courier New",8pt,bold)&lt;BR /&gt;'BatchFixedFont' = ("Courier New",8pt)&lt;BR /&gt;'FixedFont' = ("Courier New",8pt)&lt;BR /&gt;'HeadingEmphasisFont' = ("Courier New",8pt,italic)&lt;BR /&gt;'HeadingFont' = ("Courier New",8pt,bold)&lt;BR /&gt;'DocFont' = ("Courier New",8pt);&lt;/P&gt;&lt;P&gt;style table from table / background = _undef_ rules=groups cellspacing=0&lt;BR /&gt;cellpadding=0pt bordertopwidth=7 bordertopcolor=white frame=above width=100%;&lt;/P&gt;&lt;P&gt;style systemfooter from systemfooter / protectspecialchars=off;&lt;BR /&gt;&lt;BR /&gt;REPLACE headersAndFooters FROM CELL / background = _undef_&lt;BR /&gt;font=fonts('HeadingFont')&lt;BR /&gt;foreground=black&lt;BR /&gt;background=white;&lt;/P&gt;&lt;P&gt;REPLACE BODY from DOCUMENT /&lt;BR /&gt;bottommargin=1in&lt;BR /&gt;topmargin=1in&lt;BR /&gt;rightmargin=1in&lt;BR /&gt;leftmargin=1in;&lt;BR /&gt;END;&lt;BR /&gt;RUN;&lt;BR /&gt;%mend template;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 13:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735546#M229142</guid>
      <dc:creator>chrissowden</dc:creator>
      <dc:date>2021-04-20T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735569#M229146</link>
      <description>&lt;P&gt;Above what Footnote? You are not showing anything about how that template may be used.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 14:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735569#M229146</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-20T14:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735611#M229161</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I don't think you need PROC TEMPLATE to get a line above the footnote. Please review this Tech Support note: &lt;A href="https://support.sas.com/kb/46/383.html" target="_blank"&gt;https://support.sas.com/kb/46/383.html&lt;/A&gt; which shows a way that works to change the borders starting in SAS 9.2 with RTF and PDF.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Here's the original ODS ESCAPECHAR method with ODS RTF (doesn't work for PDF):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1618932023757.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58375i93CA73D5F96377F4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1618932023757.png" alt="Cynthia_sas_0-1618932023757.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Here's the method shown in the Tech Support note:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1618932052734.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58376i1ABC3FACB148B145/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1618932052734.png" alt="Cynthia_sas_1-1618932052734.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Screen shots are showing footnote at the bottom of page 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 15:21:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735611#M229161</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2021-04-20T15:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735724#M229186</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="footnote.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58414i710D92B762BD4BFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="footnote.png" alt="footnote.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; Currently the line is done with break after like I mentioned but there is a lot of space. Trying to eliminate the spacing and bring the footnotes right under the line.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 18:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735724#M229186</guid>
      <dc:creator>chrissowden</dc:creator>
      <dc:date>2021-04-20T18:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735796#M229214</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/130109"&gt;@chrissowden&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="footnote.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58414i710D92B762BD4BFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="footnote.png" alt="footnote.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; Currently the line is done with break after like I mentioned but there is a lot of space. Trying to eliminate the spacing and bring the footnotes right under the line.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Still haven't shown how any of your output is generated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 22:02:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/735796#M229214</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-20T22:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/736040#M229296</link>
      <description>&lt;BR /&gt;options ls=256 ps=44 orientation=landscape missing=""&lt;BR /&gt;topmargin="1in" bottommargin="1in" leftmargin="1in" rightmargin="1in"&lt;BR /&gt;nonumber nodate;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods escapechar='~';&lt;BR /&gt;ods rtf file="..\..\Output\TLF\&amp;amp;ofilename..rtf" style=styles.lrtftmpl;&lt;BR /&gt;ods listing close;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc report data=final split="^" headline headskip missing nowd spacing=2&lt;BR /&gt;style(header)={fontweight=medium protectspecialchars=off background=_undef_ asis=on};&lt;BR /&gt;column kppg kppg2 ord cnt aperiod avisitn col1 col2 col3 col4 col5 col6 col7 col8 ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;define kppg / group order order=data noprint;&lt;BR /&gt;define kppg2 / group order order=data noprint;&lt;BR /&gt;define ord / group order order=data noprint;&lt;BR /&gt;define cnt / group order order=data noprint;&lt;BR /&gt;&lt;BR /&gt;define aperiod / group order order=data noprint;&lt;BR /&gt;define avisitn / group order order=data noprint;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;define col1 / order "Visit^ SF-36 Component" order=data style(column)=[cellwidth=22% asis=on] style(header)=[just=l asis=on] ;&lt;BR /&gt;define col2 / display "Statistic" style(column)=[cellwidth=9% asis=on] style(header)=[just=l asis=on];&lt;BR /&gt;define col3 / display "Placebo Only^(1 or 2 Enemas)(N=&amp;amp;N1)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;define col4 / display "1 Enema of^RBX2660^(N=&amp;amp;N2)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;define col5 / display "2 Enemas of^RBX2660^(N=&amp;amp;N3)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col6 / display "3 Enemas of^RBX2660^(N=&amp;amp;N4)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col7 / display "4 Enemas of^RBX2660^(N=&amp;amp;N5)" style(column)=[cellwidth=12% just=c ];&lt;BR /&gt;define col8 / display "Total^(N=&amp;amp;N9)" style(column)=[cellwidth=10% just=c ];&lt;BR /&gt;&lt;BR /&gt;break after kppg/page;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compute before kppg;&lt;BR /&gt;line @1 ' ';&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compute after kppg2;&lt;BR /&gt;line @1 ' ';&lt;BR /&gt;endcomp;&lt;BR /&gt;/* */&lt;BR /&gt;/* compute after brk;*/&lt;BR /&gt;/* line @1 ' ';*/&lt;BR /&gt;/* endcomp;*/&lt;BR /&gt;&lt;BR /&gt;***Add extra line above the column headers;&lt;BR /&gt;compute before _page_ / style = {just = left asis = on pretext = "~R/RTF'\brdrt\brdrs\brdrw10 '"};&lt;BR /&gt;line @2 " ";&lt;BR /&gt;endcomp;&lt;BR /&gt;&lt;BR /&gt;***Add extra line at bottom of page;&lt;BR /&gt;compute after _page_ / style = {just = left asis = on pretext = "~R/RTF'\brdrt\brdrs\brdrw10 '"};&lt;BR /&gt;line @2 " ";&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods rtf close;&lt;BR /&gt;ods listing;&lt;BR /&gt;here is an example of the proc report.</description>
      <pubDate>Wed, 21 Apr 2021 15:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/736040#M229296</guid>
      <dc:creator>chrissowden</dc:creator>
      <dc:date>2021-04-21T15:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/832669#M329135</link>
      <description>&lt;P&gt;I agree with you&lt;/P&gt;</description>
      <pubDate>Sat, 10 Sep 2022 17:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/832669#M329135</guid>
      <dc:creator>AnnabellaFarley</dc:creator>
      <dc:date>2022-09-10T17:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/834734#M329966</link>
      <description>&lt;P&gt;&lt;SPAN&gt;All customers are moving en masse to the Internet, online shopping is becoming easier and more convenient, delivery of goods is developing and accelerating, and today even small companies are trying to create a website with an online store. I don't think you need PROC TEMPLATE to get the line above the footnote Trying to eliminate spaces and put footnotes right below the line. First of all, these trends are for clothing stores, flower stores, digital and appliance stores, and grocery stores. There &lt;A href="https://www.templatemonster.com/elementor-event-calendar-themes/" target="_self"&gt;the events calendar elementor&lt;/A&gt;, and you can use them to create websites.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 19:59:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/834734#M329966</guid>
      <dc:creator>AnnabellaFarley</dc:creator>
      <dc:date>2022-09-22T19:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Template bottom line before printing footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/834761#M329978</link>
      <description>&lt;P&gt;First you are using a custom style as indicated by this line&lt;/P&gt;
&lt;PRE&gt;ods rtf file="..\..\Output\TLF\&amp;amp;ofilename..rtf" &lt;FONT color="#FF00FF"&gt;style=styles.lrtftmpl&lt;/FONT&gt;;&lt;/PRE&gt;
&lt;P&gt;Since options in a style make a big difference in output the definition should be shown.&lt;/P&gt;
&lt;P&gt;Second, I still don't see anything generating a FOOTNOTE.&lt;/P&gt;
&lt;P&gt;Actual FOOTNOTEs by default go into the footer area of the document which is pretty much controlled by the amount of text placed there and is displayed by the Wordprocessor software of choice by fitting from the bottom up. So a fixed footnote takes the same amount of space on the page regardless of where other tables end.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might trying the text that you want to appear after the table as a POSTTEXT= style element in the compute after block. And why do you have Pretext there???&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 21:59:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Template-bottom-line-before-printing-footnotes/m-p/834761#M329978</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-09-22T21:59:37Z</dc:date>
    </item>
  </channel>
</rss>

