<?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 REPORT Dynamic Footnotes in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811139#M319939</link>
    <description>&lt;P&gt;&lt;A href="https://support.sas.com/kb/37/763.html" target="_self"&gt;https://support.sas.com/kb/37/763.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 May 2022 21:28:46 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2022-05-02T21:28:46Z</dc:date>
    <item>
      <title>PROC REPORT Dynamic Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811117#M319924</link>
      <description>&lt;P&gt;Anybody know an easy (quick) way to suppress footnotes in PROC REPORT after the first page?&amp;nbsp; I guess I would still want the line at the bottom of the data on all pages, but footnotes only on page 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently using a COMPUTE AFTER _PAGE_ block to display footnotes.&amp;nbsp; Until now, I wanted all footnotes on every page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a simplification of my code.&amp;nbsp; I know that PAGNUM is incrementing starting with 1, but I still get all footnotes on every page.&amp;nbsp; Is there a trick to a conditional statement within one of these COMPUTE blocks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...dave&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data = prtdata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;compute after _PAGE_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pagnum + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; line&amp;nbsp;@1&amp;nbsp; "--------------------------";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if pagnum = 1 then line&amp;nbsp;@1&amp;nbsp; "footnote 1 text";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if pagnum = 1 then line&amp;nbsp;@1&amp;nbsp; "footnote 2 text";&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if pagnum = 1 then line&amp;nbsp;@1 "footnote 3 text";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;endcomp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;run;&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 18:34:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811117#M319924</guid>
      <dc:creator>davehalltwp</dc:creator>
      <dc:date>2022-05-02T18:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT Dynamic Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811119#M319925</link>
      <description>&lt;P&gt;I seem to remember that you need to make the text to be printed conditional instead of trying to make the LINE statement itself conditional.&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 18:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811119#M319925</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-02T18:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT Dynamic Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811121#M319926</link>
      <description>&lt;P&gt;Thank&amp;nbsp; you, Tom SuperU.&amp;nbsp; I think I know how to do that, but then the footnotes will still take up the same amount of space.&amp;nbsp; The customer simply wants more data per page, so doesn't want any footnotes beyond page 1, blank or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course, I don't even know if that would be effective.&amp;nbsp; REPORT might put the same number of rows on a page whether I am adding footnotes in a COMPUTE block or not.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, I much appreciate your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...dave&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 19:08:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811121#M319926</guid>
      <dc:creator>davehalltwp</dc:creator>
      <dc:date>2022-05-02T19:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT Dynamic Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811139#M319939</link>
      <description>&lt;P&gt;&lt;A href="https://support.sas.com/kb/37/763.html" target="_self"&gt;https://support.sas.com/kb/37/763.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 21:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-Dynamic-Footnotes/m-p/811139#M319939</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2022-05-02T21:28:46Z</dc:date>
    </item>
  </channel>
</rss>

