<?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 Why is the wrong title showing up when ODS TEXT statement is used in conjunction? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277680#M16112</link>
    <description>&lt;P&gt;For some reason, the wrong title shows up on my Results page when I use the ODS TEXT command. My code is set-up like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ODS TEXT = 'Calculate summary statistics of USA residents';
TITLE "USA Residents";
PROC PRINT DATA=USASummary; RUN;

ODS TEXT = 'Calculate summary statistics of France residents';
TITLE  "France Residents";
PROC PRINT DATA=FranceSummary; RUN;

ODS TEXT = 'Calculate summary statistics of German residents';
TITLE  "German Residents";
PROC PRINT DATA=GermanSummary; RUN;&lt;/PRE&gt;&lt;P&gt;The France and Germany summary tables have the correct titles, but the USA table has the title "France Residents". If I remove the ODS TEXT command, the correct title shows up. Does anyone know why this might be happening? My main goal is to generate a final report with some descriptive text that explains the analysis, not sure if there are other commands I could use other than ODS TEXT?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Wed, 15 Jun 2016 20:57:49 GMT</pubDate>
    <dc:creator>Hadrien</dc:creator>
    <dc:date>2016-06-15T20:57:49Z</dc:date>
    <item>
      <title>Why is the wrong title showing up when ODS TEXT statement is used in conjunction?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277680#M16112</link>
      <description>&lt;P&gt;For some reason, the wrong title shows up on my Results page when I use the ODS TEXT command. My code is set-up like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ODS TEXT = 'Calculate summary statistics of USA residents';
TITLE "USA Residents";
PROC PRINT DATA=USASummary; RUN;

ODS TEXT = 'Calculate summary statistics of France residents';
TITLE  "France Residents";
PROC PRINT DATA=FranceSummary; RUN;

ODS TEXT = 'Calculate summary statistics of German residents';
TITLE  "German Residents";
PROC PRINT DATA=GermanSummary; RUN;&lt;/PRE&gt;&lt;P&gt;The France and Germany summary tables have the correct titles, but the USA table has the title "France Residents". If I remove the ODS TEXT command, the correct title shows up. Does anyone know why this might be happening? My main goal is to generate a final report with some descriptive text that explains the analysis, not sure if there are other commands I could use other than ODS TEXT?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277680#M16112</guid>
      <dc:creator>Hadrien</dc:creator>
      <dc:date>2016-06-15T20:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the wrong title showing up when ODS TEXT statement is used in conjunction?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277691#M16114</link>
      <description>&lt;P&gt;You don't say what your ODS destination is, but I get the expected layout in RTF with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods rtf file="&amp;amp;sasforum\Reports\testTEXT.rtf";

TITLE "USA Residents";
ODS TEXT = 'Calculate summary statistics of USA residents';
PROC PRINT DATA=USASummary; RUN;

ods rtf startpage=now;
TITLE  "France Residents";
ODS TEXT = 'Calculate summary statistics of France residents';
PROC PRINT DATA=FranceSummary; RUN;

ods rtf startpage=now;
TITLE  "German Residents";
ODS TEXT = 'Calculate summary statistics of German residents';
PROC PRINT DATA=GermanSummary; RUN;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jun 2016 21:40:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277691#M16114</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-06-15T21:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the wrong title showing up when ODS TEXT statement is used in conjunction?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277814#M16122</link>
      <description>&lt;P&gt;Why do you want to use ods text in this way. &amp;nbsp;Why not just put another title line in (which is what you are doing);&lt;/P&gt;
&lt;P&gt;title "USA Residents";&lt;/P&gt;
&lt;P&gt;title2 "Calculate...";&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can manipulate font and position of the title to look like a subheader.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 08:56:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-is-the-wrong-title-showing-up-when-ODS-TEXT-statement-is/m-p/277814#M16122</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-06-16T08:56:14Z</dc:date>
    </item>
  </channel>
</rss>

