<?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 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359945#M18648</link>
    <description>&lt;P&gt;Please follow the guidance on the page when posting a new question, post test data in the form of a datastep and what you want the output to look like, otherwise we are just guessing.&lt;/P&gt;
&lt;PRE&gt;data have;
  a="{xxx }";
run;

ods rtf file="abc.rtf";
proc report data=have nowd;
  columns a;
run;
ods rtf close;
&lt;/PRE&gt;</description>
    <pubDate>Fri, 19 May 2017 11:57:40 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-05-19T11:57:40Z</dc:date>
    <item>
      <title>ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359941#M18647</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to get the "{xxx }" &amp;nbsp;these in the report including braces, as i have to show this in report using ods rtf.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 11:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359941#M18647</guid>
      <dc:creator>raghu7</dc:creator>
      <dc:date>2017-05-19T11:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359945#M18648</link>
      <description>&lt;P&gt;Please follow the guidance on the page when posting a new question, post test data in the form of a datastep and what you want the output to look like, otherwise we are just guessing.&lt;/P&gt;
&lt;PRE&gt;data have;
  a="{xxx }";
run;

ods rtf file="abc.rtf";
proc report data=have nowd;
  columns a;
run;
ods rtf close;
&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2017 11:57:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359945#M18648</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-19T11:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359980#M18650</link>
      <description>&lt;P&gt;How are you generating your output?&lt;/P&gt;
&lt;P&gt;Do you mean that you have numeric&amp;nbsp;values that will appear in a table and that you want to enclose, possibly a range of them, in {}&lt;/P&gt;
&lt;P&gt;such as&lt;/P&gt;
&lt;P&gt;{123.4}?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have to provide additional information such as rules, number of decimals to display if any. The most likely approach would be a custom picture format such as shown here:&lt;/P&gt;
&lt;PRE&gt;proc format library=work;
picture braces
low-high = '00009.9}' (prefix='{' );
run;


data have;
  input x;
datalines;
-123
0
234.5
;

proc print data=have;
  var x;
  format x braces.;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2017 14:21:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF/m-p/359980#M18650</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-19T14:21:40Z</dc:date>
    </item>
  </channel>
</rss>

