<?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 how write 2 titles with single  statement in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581763#M23189</link>
    <description>&lt;P&gt;ods escapechar='^' ;&lt;/P&gt;
&lt;P&gt;title '^demographic^details' ;&lt;/P&gt;
&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;
&lt;P&gt;column name sex age height; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create 2 titles with single statement .I have tried above program but it is not working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Aug 2019 16:20:46 GMT</pubDate>
    <dc:creator>thanikondharish</dc:creator>
    <dc:date>2019-08-16T16:20:46Z</dc:date>
    <item>
      <title>how write 2 titles with single  statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581763#M23189</link>
      <description>&lt;P&gt;ods escapechar='^' ;&lt;/P&gt;
&lt;P&gt;title '^demographic^details' ;&lt;/P&gt;
&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;
&lt;P&gt;column name sex age height; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create 2 titles with single statement .I have tried above program but it is not working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581763#M23189</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-08-16T16:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: how write 2 titles with single  statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581764#M23190</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^' ;
title '^demographic^details' ;
title2 'my second title line'
proc report data=sashelp.class nowd;
column name sex age height; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:23:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581764#M23190</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-08-16T16:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: how write 2 titles with single  statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581768#M23191</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209685"&gt;@thanikondharish&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;ods escapechar='^' ;&lt;/P&gt;
&lt;P&gt;title '^demographic^details' ;&lt;/P&gt;
&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;
&lt;P&gt;column name sex age height; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create 2 titles with single statement .I have tried above program but it is not working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Escapechar to have any effect is going to need a function or style element in some.&lt;/P&gt;
&lt;P&gt;Perhaps you are looking for&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods escapechar='^' ;

title 'demographic^{newline}details' ;

proc report data=sashelp.class nowd;

column name sex age height; run;
&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:27:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581768#M23191</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-16T16:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: how write 2 titles with single  statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581769#M23192</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209685"&gt;@thanikondharish&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;ods escapechar='^' ;&lt;/P&gt;
&lt;P&gt;title '^demographic^details' ;&lt;/P&gt;
&lt;P&gt;proc report data=sashelp.class nowd;&lt;/P&gt;
&lt;P&gt;column name sex age height; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create 2 titles with single statement .I have tried above program but it is not working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Depends on the output destination.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 16:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581769#M23192</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-16T16:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: how write 2 titles with single  statement</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581871#M23193</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;Your program above is not correct. you need more than just the ^ ESCAPECHAR you need the NEWLINE function:&lt;BR /&gt;&lt;FONT size="4" face="courier new,courier"&gt;&lt;STRONG&gt;title '&lt;FONT color="#339966"&gt;demographic&lt;/FONT&gt;&lt;FONT color="#FF00FF"&gt;^{newline 1}&lt;/FONT&gt;&lt;FONT color="#0000FF"&gt;details&lt;/FONT&gt;' ;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;But, also, this will work in RTF, PDF and HTML. Will not work in CSV, ODS EXCEL or ODS TAGSETS.EXCLEXP. So it really depends on your destination of interest, which you did NOT show. The ^ by itself is NOT a newline or line feed or carriage return instruction.&lt;BR /&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 21:33:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-write-2-titles-with-single-statement/m-p/581871#M23193</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-08-16T21:33:01Z</dc:date>
    </item>
  </channel>
</rss>

