<?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: How to remove space above footnote in graph in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645792#M193082</link>
    <description>&lt;P&gt;Could you please try to remove the below piece of code from the program and try rerunning the graph&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{&amp;amp;fnn2}";
ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{}";&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 May 2020 07:05:33 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2020-05-07T07:05:33Z</dc:date>
    <item>
      <title>How to remove space above footnote in graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645773#M193071</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am re-posting this query as previously posted on Graphics programing forum.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am generating multiple page graphs. One page graph for each subject like wise I have 100+ page graph output. I am using below codes to present titles and footnote by controlling them startpage=Yes/now option. Now I am facing unique problem where tilte and footnote appearing correctly in first page but second page onwards I am getting one space before the footnote. Please see the attached where I highlighted in rec box. Could you please guide me how do I remove these space second page on wards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I used:-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods listing close;&lt;BR /&gt;options nobyline nodate nonumber orientation=landscape papersize=LETTER;&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods path template.customtemp sasuser.templat(read) sashelp.tmplmst(read) ;&lt;BR /&gt;ods path(prepend) work.templat;&lt;/P&gt;&lt;P&gt;ods rtf file = "&amp;amp;base2/tfl/prod/figures/&amp;amp;tflno..rtf" NOGTITLE NOGFOOTNOTE ;&lt;/P&gt;&lt;P&gt;options mprint mlogic;&lt;BR /&gt;%macro grp;&lt;/P&gt;&lt;P&gt;%do i=1 %to 3;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;set chk(where =(ord=&amp;amp;i.));&lt;BR /&gt;by subjid;&lt;BR /&gt;call symputx("subj"||left(put(&amp;amp;i,3.)),strip(subjid));&lt;BR /&gt;call symputx("trt"||left(put(&amp;amp;i,3.)),strip(trt02a));&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;options nonumber nodate orientation=landscape center;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=9.8in height=5.0in ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods rtf startpage=now;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=c}{&amp;amp;ttl1}";&lt;BR /&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=c}{&amp;amp;ttl2. &amp;amp;popttl}";&lt;BR /&gt;/* ods rtf text="(*ESC*)S={outputwidth=100% just=c} {}"; */&lt;/P&gt;&lt;P&gt;title1 h=8pt j=l "&amp;amp;__sponsor.";&lt;BR /&gt;title2 h=8pt j=l "&amp;amp;__protocol." ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc sgplot data=outdata(where=(ord=&amp;amp;i.)) dattrmap=zattrs pad=12%;&lt;BR /&gt;scatter x=ady y=mean / /*yerrorupper=high yerrorlower=low*/&lt;BR /&gt;group=prm groupdisplay=cluster clusterwidth=0.5 attrid=myid ;&lt;BR /&gt;series x=ady y=mean / group=prm groupdisplay=cluster clusterwidth=0.5 attrid=myid name='s' markers ;&lt;BR /&gt;series x=ady y=mean / markerattrs=(size=0) x2axis;&lt;BR /&gt;xaxis label="Visit" type=linear values=( &amp;amp;xaxis. ) offsetmin=0.10 ;&lt;BR /&gt;yaxis label="Biochemistry" values=(&amp;amp;yaxis.)&lt;BR /&gt;offsetmin=0.14 offsetmax=0.02;&lt;BR /&gt;x2axis label="Subject=&amp;amp;&amp;amp;subj&amp;amp;i &amp;amp;&amp;amp;trt&amp;amp;i" display=(noline noticks novalues);&lt;BR /&gt;keylegend 's' / border location=inside position=topright across=1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{&amp;amp;fnn1}";&lt;BR /&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{&amp;amp;fnn2}";&lt;BR /&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{}";&lt;BR /&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}Program Run: &amp;amp;sysdate &amp;amp;systime Output Name: &amp;amp;tflno..rtf Page &amp;amp;i. of %left(&amp;amp;maxpg.)";&lt;/P&gt;&lt;P&gt;ods rtf startpage=off;&lt;/P&gt;&lt;P&gt;%end;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;%grp;&lt;/P&gt;&lt;P&gt;ods rtf close;&lt;BR /&gt;ods _all_ close;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 04:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645773#M193071</guid>
      <dc:creator>mnithinshetty</dc:creator>
      <dc:date>2020-05-07T04:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space above footnote in graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645792#M193082</link>
      <description>&lt;P&gt;Could you please try to remove the below piece of code from the program and try rerunning the graph&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{&amp;amp;fnn2}";
ods rtf text="(*ESC*)S={outputwidth=100% just=l color=black}{}";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 May 2020 07:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645792#M193082</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-05-07T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space above footnote in graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645801#M193087</link>
      <description>&lt;P&gt;Thank you for the reply. I tried as you suggested, but it dint work for me.&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 07:43:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/645801#M193087</guid>
      <dc:creator>mnithinshetty</dc:creator>
      <dc:date>2020-05-07T07:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space above footnote in graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/646576#M193457</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used ods tagsets to remove the spaces above footnote in each page. below is the code.&lt;/P&gt;&lt;P&gt;One of the user mentioned this logic in their discussion.&lt;/P&gt;&lt;P&gt;ods tagsets.rtf file="xxx..rtf" uniform&lt;BR /&gt;nogtitle nogfootnote&lt;BR /&gt;options( tables_off="systitleandfootercontainer " continue_tag="no" vspace='no')&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-blank-line-between-title-and-header/td-p/55906" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Remove-blank-line-between-title-and-header/td-p/55906&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 06:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-space-above-footnote-in-graph/m-p/646576#M193457</guid>
      <dc:creator>mnithinshetty</dc:creator>
      <dc:date>2020-05-11T06:36:54Z</dc:date>
    </item>
  </channel>
</rss>

