<?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 tagsets.excelxp - how to add a free text comment? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/224557#M14295</link>
    <description>&lt;P&gt;Please help me to find the solution for plain text. i don't have any dataset to print there. i only want to print the text. thanks&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2015 02:37:30 GMT</pubDate>
    <dc:creator>surajdvpatil</dc:creator>
    <dc:date>2015-09-09T02:37:30Z</dc:date>
    <item>
      <title>ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165717#M12154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="text-align: left;"&gt;I'm reporting some tables using ODS tagsets.excelxp and would like to add a free text note between some tables to the output file. For example, if I were using ODS PDF or ODS HTML, I would accomplish this using the code: ODS HTML TEXT="type my note here", but it seems that no similar statement exists using XML(?) I would prefer to use a statement like this in favor of a simple footnote because: 1) I already have footnotes in the document and would like to keep this separate, and 2) the footnotes appear at the bottom of the sheet, whereas I would like to add a note below one specific table. Any tips on adding a free text note like this would be greatly appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 18:21:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165717#M12154</guid>
      <dc:creator>ashlicole</dc:creator>
      <dc:date>2014-07-03T18:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165718#M12155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ExcelXP tagset does not currently support&amp;nbsp; TEXT=&amp;nbsp; as the other destinations such as HTML, PDF and RTF. You can try using the DATA step. What version of SAS are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 19:08:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165718#M12155</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2014-07-03T19:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165719#M12156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you use PROC REPORT, you can use a COMPUTE block to put ancillary text into a table (at the bottom or top of the table, as shown if you run the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp file='c:\temp\addtext_xp.xml' style=sasweb&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; options(doc='Help');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title 'This is the Title';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;footnote 'This is the Footnote';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=sashelp.class(obs=5) nowd;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column name age sex height weight;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; compute after / style={just=l fontweight=bold fontsize=10pt color=green };&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; line "This note is part of the table.";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; endcomp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 19:10:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165719#M12156</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-07-03T19:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165720#M12157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;9.3. Thanks for the idea-- I will try using a data step with a PUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 19:34:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165720#M12157</guid>
      <dc:creator>ashlicole</dc:creator>
      <dc:date>2014-07-03T19:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165721#M12158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The new pre-production Excel destination which is available beginning in SAS 9.4M1 does support the ODS TEXT= statement, however, I realize that this will not help in this instance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2014 13:41:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/165721#M12158</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2014-07-07T13:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp - how to add a free text comment?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/224557#M14295</link>
      <description>&lt;P&gt;Please help me to find the solution for plain text. i don't have any dataset to print there. i only want to print the text. thanks&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 02:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-how-to-add-a-free-text-comment/m-p/224557#M14295</guid>
      <dc:creator>surajdvpatil</dc:creator>
      <dc:date>2015-09-09T02:37:30Z</dc:date>
    </item>
  </channel>
</rss>

