<?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 ODS PDF title functions in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113957#M10135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working with another SAS user here and she posed an interesting question about titles in ODS PDF that I have no idea how to answer or approach. We have poured through the ODS SAS books we have to no avail. The question is: can you use functions in titles similar to using them in footnotes. Her objective is to somehow get the title (well the subtitle under title3) to use "cont'd" on each subsequent page of the PDF that is created from a fairly large dataset using proc report. Thus the first page would read the title3 line and place "subtitle of report here..." and the subsequent pages would read "subtitle of report here...cont'd" for however many pages the proc report generates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have been using footnote functions without issues ({thispage} will drop the correct page number on the bottom of the PDF and as long as there are no graphics to interfere, the {lastpage} works even if the length of the report changes from week to week). Is there something similar to add into the titles that can also be modified to include some type of function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2013 17:02:36 GMT</pubDate>
    <dc:creator>Alphanumeric</dc:creator>
    <dc:date>2013-02-19T17:02:36Z</dc:date>
    <item>
      <title>ODS PDF title functions</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113957#M10135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working with another SAS user here and she posed an interesting question about titles in ODS PDF that I have no idea how to answer or approach. We have poured through the ODS SAS books we have to no avail. The question is: can you use functions in titles similar to using them in footnotes. Her objective is to somehow get the title (well the subtitle under title3) to use "cont'd" on each subsequent page of the PDF that is created from a fairly large dataset using proc report. Thus the first page would read the title3 line and place "subtitle of report here..." and the subsequent pages would read "subtitle of report here...cont'd" for however many pages the proc report generates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have been using footnote functions without issues ({thispage} will drop the correct page number on the bottom of the PDF and as long as there are no graphics to interfere, the {lastpage} works even if the length of the report changes from week to week). Is there something similar to add into the titles that can also be modified to include some type of function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 17:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113957#M10135</guid>
      <dc:creator>Alphanumeric</dc:creator>
      <dc:date>2013-02-19T17:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF title functions</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113958#M10136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; You can only change a title at a step boundary. So, there is no function to do exactly what you want. Frequently, people will do something like what is shown below.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file=....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; *** title statements for first page;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG style="font-family: courier new,courier;"&gt;*** proc step to display "first page" title using data=bigfile(obs=45) to limit the number of obs;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG style="font-family: courier new,courier;"&gt;*** change title statements to have continued;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG style="font-family: courier new,courier;"&gt;*** second proc step to display rest of report using data=bigfile(firstobs=46) to start at a different obs for rest of report;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 17:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113958#M10136</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-02-19T17:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF title functions</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113959#M10137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And that is what we were actually planning, but I figured I would ask before we set out to do that. Didn't know if someone found a way yet or if there was an upcoming presentation on a new trick like this. Thanks Cynthia.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 17:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-title-functions/m-p/113959#M10137</guid>
      <dc:creator>Alphanumeric</dc:creator>
      <dc:date>2013-02-19T17:32:54Z</dc:date>
    </item>
  </channel>
</rss>

