<?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 FOOTER in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/FOOTER/m-p/25293#M4181</link>
    <description>I need a table  containing two rows as my footer is it possible to get ??</description>
    <pubDate>Fri, 13 Jun 2008 04:04:40 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-06-13T04:04:40Z</dc:date>
    <item>
      <title>FOOTER</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/FOOTER/m-p/25293#M4181</link>
      <description>I need a table  containing two rows as my footer is it possible to get ??</description>
      <pubDate>Fri, 13 Jun 2008 04:04:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/FOOTER/m-p/25293#M4181</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-06-13T04:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: FOOTER</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/FOOTER/m-p/25294#M4182</link>
      <description>Hi Anee.&lt;BR /&gt;
Don't know if it is really what you want, but here are two solutions to have several footer lines at the bottom of a table.&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS PDF FILE="c:\temp\test.pdf" ;&lt;BR /&gt;
PROC REPORT DATA = sashelp.class NOWD ;&lt;BR /&gt;
	COLUMNS _ALL_ ;&lt;BR /&gt;
	COMPUTE AFTER ;&lt;BR /&gt;
		LINE "1st line of footer" ;&lt;BR /&gt;
		LINE "2nd line of footer" ;&lt;BR /&gt;
	ENDCOMP ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
/* another solution */&lt;BR /&gt;
PROC TEMPLATE ;&lt;BR /&gt;
	DEFINE TABLE customClass ;&lt;BR /&gt;
	COLUMN name age sex height weight ;&lt;BR /&gt;
	DEFINE FOOTER f ;&lt;BR /&gt;
		START=name ;&lt;BR /&gt;
		END=weight ;&lt;BR /&gt;
		TEXT "1st line of footer (*ESC*)n 2nd line of footer" ;&lt;BR /&gt;
	END ; /* (*ESC)n  = carriage return */&lt;BR /&gt;
	END ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
DATA _NULL_ ;&lt;BR /&gt;
	SET sashelp.class ;&lt;BR /&gt;
	FILE PRINT ODS=(TEMPLATE="customClass") ;&lt;BR /&gt;
	PUT _ODS_ ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
ODS PDF CLOSE ;[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Cheers.&lt;BR /&gt;
Olivier</description>
      <pubDate>Fri, 13 Jun 2008 07:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/FOOTER/m-p/25294#M4182</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2008-06-13T07:07:29Z</dc:date>
    </item>
  </channel>
</rss>

