<?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: ods title issue: can I have a title for different proc? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254221#M48452</link>
    <description>when I add "startpage=no" then it does not work</description>
    <pubDate>Thu, 03 Mar 2016 15:54:17 GMT</pubDate>
    <dc:creator>fengyuwuzu</dc:creator>
    <dc:date>2016-03-03T15:54:17Z</dc:date>
    <item>
      <title>ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254211#M48448</link>
      <description>&lt;P&gt;if I want to have several proc to print on the same page, can I have a different title for each proc?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried and the titles in the 2nd and 3rd proc did not appear at all.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 15:45:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254211#M48448</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2016-03-03T15:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254214#M48450</link>
      <description>&lt;P&gt;Yes, post your code.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 15:47:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254214#M48450</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-03T15:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254217#M48451</link>
      <description>&lt;P&gt;Please post the code you have tried as this works fine for me:&lt;/P&gt;
&lt;PRE&gt;ods rtf file="s:\temp\rob\temp.rtf";
title "This is first one";
proc print data=sashelp.class;
run;
title "Another one";
proc print data=sashelp.cars;
run;
ods rtf close;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Mar 2016 15:49:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254217#M48451</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-03T15:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254221#M48452</link>
      <description>when I add "startpage=no" then it does not work</description>
      <pubDate>Thu, 03 Mar 2016 15:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254221#M48452</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2016-03-03T15:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254227#M48453</link>
      <description>I confirm this is because the startpage=no option&lt;BR /&gt;&lt;BR /&gt;without it, no problem. with it, the titles from the second proc is suppressed .</description>
      <pubDate>Thu, 03 Mar 2016 15:58:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254227#M48453</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2016-03-03T15:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254228#M48454</link>
      <description>&lt;P&gt;I found a post here :&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-pdf-startpage-No-lost-the-following-by-group-title/td-p/188940" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-pdf-startpage-No-lost-the-following-by-group-title/td-p/188940&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 15:59:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254228#M48454</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2016-03-03T15:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254230#M48455</link>
      <description>&lt;P&gt;Yes, well there is the problem. &amp;nbsp;Startpage=no means there is no page break. &amp;nbsp;Titles and footnotes by their very nature can only apply to the page, i.e. they are the title of that page. &amp;nbsp;Because there is only one page you only get one page. &amp;nbsp;What does the output need to look like, you could try ods text="..."; to get a subheading, or use by groups, hard to say without an example.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 16:00:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254230#M48455</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-03T16:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254231#M48456</link>
      <description>&lt;P&gt;Yes, that is an example of using ods text="..."; to output some text at the point. &amp;nbsp;It is not titles/footnotes though. &amp;nbsp;If that works for you all well and good (just doesn't match your topic title &lt;span class="lia-unicode-emoji" title=":monkey_face:"&gt;🐵&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 16:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254231#M48456</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-03T16:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254236#M48457</link>
      <description>yes, it works. when I wanted to center the text with:&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods text= "^S={width=100% just=c }test1 ";&lt;BR /&gt;I got the following warning:&lt;BR /&gt;416  ods text= "^S={width=100% just=c }test2 "&lt;BR /&gt;                                             -&lt;BR /&gt;                                             49&lt;BR /&gt;416! ;&lt;BR /&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release.&lt;BR /&gt;             Inserting white space between a quoted string and the succeeding identifier is recommended&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Mar 2016 16:13:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254236#M48457</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2016-03-03T16:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: ods title issue: can I have a title for different proc?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254241#M48458</link>
      <description>&lt;P&gt;With ODS RTF the BODYTITLE option is used to specify that the titles and footnotes go into the body of the document not the header or footer of the page. That will work with startpage=no to provide titles for each proc on a page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the Note is just that, a note that sometime in the future the appearance of your output might chage because your code contains something like "quoted text here"variablename instead of "quoted text here" variablename. If you don't like the note put a space after the quoted string.&lt;/P&gt;
&lt;P&gt;This note has been around since 9.0 at least.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 16:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-title-issue-can-I-have-a-title-for-different-proc/m-p/254241#M48458</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-03-03T16:34:41Z</dc:date>
    </item>
  </channel>
</rss>

