<?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- remove space between table and footnotes in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909879#M358841</link>
    <description>&lt;P&gt;Use %footnote in LINE statement ?&lt;/P&gt;
&lt;P&gt;If there were multi-rows in %footnote , you need manipulate it on your own before LINE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;compute after/style={bordertopcolor=black bordertopwidth=2px borderbottomcolor=white borderbottomwidth=2px just=l};
line &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;"%footnotes"&lt;/STRONG&gt;&lt;/FONT&gt;;
endcomp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 29 Dec 2023 01:05:42 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2023-12-29T01:05:42Z</dc:date>
    <item>
      <title>Proc Report- remove space between table and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909768#M358817</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to remove a space between footnotes and a table using PARSKIP and VSPACE.&amp;nbsp; This worked for removing the space but it also removed the space between the header/ title and the table (which I don't want).&amp;nbsp; Our footnotes are pulled in using a separate macro which I don't want to mess with.&amp;nbsp; SO is there a way to update this code to affect the space after the table only?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jenim514_0-1703703196192.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92091iE1AFE2694DC92835/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jenim514_0-1703703196192.png" alt="jenim514_0-1703703196192.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 18:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909768#M358817</guid>
      <dc:creator>jenim514</dc:creator>
      <dc:date>2023-12-27T18:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report- remove space between table and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909783#M358824</link>
      <description>&lt;P&gt;You could mimic FOOTNOTE by LINE statement.&lt;/P&gt;
&lt;P&gt;Here is an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
title 'xxxxxxxxxx';
%let footnote=zzzzzzzz;

ods tagsets.rtf file='c:\temp\temp.rtf' style=journal;
proc report data=sashelp.class nowd style={outputwidth=100%};

compute after/style={bordertopcolor=black bordertopwidth=2px borderbottomcolor=white borderbottomwidth=2px just=l};
line "&amp;amp;footnote.";
endcomp;

run;
ods tagsets.rtf 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-1703730144046.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92095i7ABE479002684EBE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1703730144046.png" alt="Ksharp_0-1703730144046.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2023 02:22:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909783#M358824</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-12-28T02:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report- remove space between table and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909860#M358835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Thank you for the example.&amp;nbsp; This could possibly work, but is there a way to call a macro using %let?&amp;nbsp; I need to call&amp;nbsp; global macro %footnotes (as it contains all footnotes being pulled in from an excel file etc).&amp;nbsp; &amp;nbsp;I know %let footnote=%footnotes (global macro) does not work, but trying to think of some work around so I can use %footnotes&amp;nbsp; in LINE without manipulating our %footnotes global macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Dec 2023 18:11:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909860#M358835</guid>
      <dc:creator>jenim514</dc:creator>
      <dc:date>2023-12-28T18:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report- remove space between table and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909879#M358841</link>
      <description>&lt;P&gt;Use %footnote in LINE statement ?&lt;/P&gt;
&lt;P&gt;If there were multi-rows in %footnote , you need manipulate it on your own before LINE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;compute after/style={bordertopcolor=black bordertopwidth=2px borderbottomcolor=white borderbottomwidth=2px just=l};
line &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;"%footnotes"&lt;/STRONG&gt;&lt;/FONT&gt;;
endcomp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Dec 2023 01:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909879#M358841</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-12-29T01:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report- remove space between table and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909903#M358850</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/59697"&gt;@jenim514&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Thank you for the example.&amp;nbsp; This could possibly work, but is there a way to call a macro using %let?&amp;nbsp; I need to call&amp;nbsp; global macro %footnotes (as it contains all footnotes being pulled in from an excel file etc).&amp;nbsp; &amp;nbsp;I know %let footnote=%footnotes (global macro) does not work, but trying to think of some work around so I can use %footnotes&amp;nbsp; in LINE without manipulating our %footnotes global macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;To answer that you would have to explain what your FOOTNOTES macro generates.&amp;nbsp; If it generates actual FOOTNOTE statements then it won't work.&amp;nbsp; You would need to change the macro to generate LINE statements instead.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 16:38:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-remove-space-between-table-and-footnotes/m-p/909903#M358850</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-12-29T16:38:31Z</dc:date>
    </item>
  </channel>
</rss>

