<?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 do I maintain individual titles and footnotes for PROC Report outputs when using page contro in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/933283#M367065</link>
    <description>That did the trick! Thanks!!</description>
    <pubDate>Fri, 21 Jun 2024 13:06:52 GMT</pubDate>
    <dc:creator>RandoDando</dc:creator>
    <dc:date>2024-06-21T13:06:52Z</dc:date>
    <item>
      <title>How do I maintain individual titles and footnotes for PROC Report outputs when using page control?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932805#M366939</link>
      <description>&lt;P&gt;I have several PROC report statements that I want to output to using ODS PDF with approx 2 to 3 per page.&amp;nbsp; I am using the startpage=no in the first ods file statement and startpage=now where I want to have pagebreaks.&amp;nbsp; However, when I do this it's only giving me 1 title and footnote per page --those for the first statement.&amp;nbsp; How do I maintain the individual titles and footnotes for each output on the page?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 14:31:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932805#M366939</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2024-06-18T14:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I maintain individual titles and footnotes for PROC Report outputs when using page contro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932866#M366941</link>
      <description>I see the option for ODS Text = but I cannot find any formatting option for this.  Seems to be good for footnotes, but not titles.</description>
      <pubDate>Tue, 18 Jun 2024 15:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932866#M366941</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2024-06-18T15:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I maintain individual titles and footnotes for PROC Report outputs when using page contro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932891#M366952</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS ESCAPECHAR has style options for formatting texts (ODS TEXT) . Look at &lt;A href="https://www.lexjansen.com/pharmasug/2009/tu/TU08.pdf" target="_self"&gt;this paper&lt;/A&gt;&amp;nbsp;.&amp;nbsp;&lt;BR /&gt;eg.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='~';
ods pdf file='test.pdf' startpage=no;
	title 'Sex= Female';
	proc report data=sashelp.class;
	where sex='F';
	run;

	ods text='~S={font_size=12pt just=center font_weight=bold} Sex= Male';
	proc report data=sashelp.class;
	where sex='M';
	run;

	ods pdf startpage=now;
	title 'Sex= Both';
	proc report data=sashelp.class;
	run;
ods pdf close; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Jun 2024 18:40:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/932891#M366952</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2024-06-18T18:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I maintain individual titles and footnotes for PROC Report outputs when using page contro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/933283#M367065</link>
      <description>That did the trick! Thanks!!</description>
      <pubDate>Fri, 21 Jun 2024 13:06:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-maintain-individual-titles-and-footnotes-for-PROC/m-p/933283#M367065</guid>
      <dc:creator>RandoDando</dc:creator>
      <dc:date>2024-06-21T13:06:52Z</dc:date>
    </item>
  </channel>
</rss>

