<?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 RTF TEXT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387392#M19036</link>
    <description>&lt;P&gt;BODYTITLE is what removes the title from the HEADER.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the code but I don't know what your issue is still. And I can't run it because we don't have data, so if you could simplify it to use a SASHELP dataset that may help.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Aug 2017 15:49:44 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-08-11T15:49:44Z</dc:date>
    <item>
      <title>ODS RTF TEXT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387375#M19033</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to put a text above a chart (generated by proc sgpplot) so I trythis code&lt;/P&gt;&lt;P&gt;ods rtf text = "&lt;FONT color="#0000ff"&gt;^S={just=c } The Text&lt;/FONT&gt; ";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the problem I encounter is that the text in the output is the whole text between " " so &lt;FONT color="#0000ff"&gt;^S={just=c } The Text&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;and not only "The text"&lt;/P&gt;&lt;P&gt;Thanks in advance for your help&lt;/P&gt;&lt;P&gt;Nasser&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2017 15:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387375#M19033</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2017-08-11T15:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF TEXT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387380#M19034</link>
      <description>&lt;P&gt;Try the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf text = "The Text ";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title j=c 'The Text';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You may need to modify the ODS RTF settings to get the title exactly where you want it, you can use the BODYTITLE option to include the TITLE in the body of the text, not the header.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're stilling having issues, I suggest you include some full code, with the SGPLOT and output included so we can clearly see what the issue is.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2017 15:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387380#M19034</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-11T15:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF TEXT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387391#M19035</link>
      <description>&lt;PRE&gt;Title 'Amortissement'  ;



%macro Loop_Rac_ODS(count) ;
ODS RTF startpage = yes   FILE = "&amp;amp;filename." style = Sapphire NOGTITLE NOGFOOTNOTE BODYTITLE ;
%Do i=1 %To &amp;amp;count ;
	proc sql noprint ;
	select RAC_Label into :v_RAC_Label from RAC_Values where RAC_Indexe = &amp;amp;i ;
	quit ;
	
title j=c 'The Text';


	proc sgplot data = BEH_INDIC_7 (where=(RAC="&amp;amp;v_RAC_Label.")) ; 
 		series x = ANNEE_AMO_SUITE y = ratio / group = &amp;amp;v_AXE. lineattrs=(pattern=solid)  ;
  		xaxis display=(nolabel);
  		yaxis display=(nolabel);
  		KEYLEGEND / title = "" NOBORDER ;
	run;
%End ; 
ODS RTF CLOSE ;
%Mend Loop_Rac_ODS ;		


%Loop_Rac_ODS(3) ;&lt;/PRE&gt;&lt;P&gt;this is the whole code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to keep the main title "Amortissement" in the header that 's why I mention "NOGTILE" but whenever&amp;nbsp;I mention&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;title j=c &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'The Text'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt; as you suggess, the main title is removed from the header&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2017 15:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387391#M19035</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2017-08-11T15:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF TEXT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387392#M19036</link>
      <description>&lt;P&gt;BODYTITLE is what removes the title from the HEADER.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the code but I don't know what your issue is still. And I can't run it because we don't have data, so if you could simplify it to use a SASHELP dataset that may help.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2017 15:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/387392#M19036</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-11T15:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF TEXT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/388385#M19068</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the solution below.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000" size="3"&gt;ods escapechar='^';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;ods text ="^S={width=100% just=c } Go to SAS HomePage" ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I forgot the green line code.But then It works&lt;/P&gt;&lt;P&gt;Nasser&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 08:07:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-TEXT/m-p/388385#M19068</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2017-08-16T08:07:52Z</dc:date>
    </item>
  </channel>
</rss>

