<?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 to export an additional excel worksheet of text only in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626541#M184821</link>
    <description>&lt;P&gt;SAS 9.4 TS1M5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out a way of exporting an excel worksheet within the same workbook as my data output that is text only. This worksheet would be a glossary of terms and general information regarding the data. In the past, I have just used extensive footnotes, but I have reached the footnote limit as the amount of data definitions needed to provide to the customer is rather extensive in this case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using ods excel to export. I believe that I could create this using datalines and I am sure that most likely needs to be part of it unless I stored the text in a separate txt file and imported it which can be done, but ultimately I don't want this to appear as a table per se in the excel - no presence of a label or field name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume that this is a pretty easy request, but I haven't been able to find an example that really fits what I am looking for. Does anyone have experience with creating something like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 19:25:34 GMT</pubDate>
    <dc:creator>jpagitt</dc:creator>
    <dc:date>2020-02-21T19:25:34Z</dc:date>
    <item>
      <title>How to export an additional excel worksheet of text only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626541#M184821</link>
      <description>&lt;P&gt;SAS 9.4 TS1M5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out a way of exporting an excel worksheet within the same workbook as my data output that is text only. This worksheet would be a glossary of terms and general information regarding the data. In the past, I have just used extensive footnotes, but I have reached the footnote limit as the amount of data definitions needed to provide to the customer is rather extensive in this case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using ods excel to export. I believe that I could create this using datalines and I am sure that most likely needs to be part of it unless I stored the text in a separate txt file and imported it which can be done, but ultimately I don't want this to appear as a table per se in the excel - no presence of a label or field name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume that this is a pretty easy request, but I haven't been able to find an example that really fits what I am looking for. Does anyone have experience with creating something like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 19:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626541#M184821</guid>
      <dc:creator>jpagitt</dc:creator>
      <dc:date>2020-02-21T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to export an additional excel worksheet of text only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626552#M184825</link>
      <description>&lt;P&gt;Apologies if I'm misunderstanding but what your asking in the title; to me contradicts what your saying you want.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I am trying to figure out a way of exporting an excel worksheet within the same workbook as my data output that is text only.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you just wanting like a readme.txt file? If so you can export to .txt:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set sashelp.class;
  file "c:\temp\someFile.txt";
  put name age sex;
  file print;
  put name age sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If your just trying to input "text" you can use the ODS TEXT= option. Details here:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p14gx25pepks6dn1q9m7vkq3gfoi.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p14gx25pepks6dn1q9m7vkq3gfoi.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hopefully one of those helps.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 20:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626552#M184825</guid>
      <dc:creator>Krueger</dc:creator>
      <dc:date>2020-02-21T20:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to export an additional excel worksheet of text only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626556#M184826</link>
      <description>&lt;P&gt;I don't really want a readme. We'd use that internally, but when it comes to what is sent off, I really just want a way of packaging everything together with the data definitions wrapped into the worksheet itself or into a separate worksheet of the same workbook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like the ODS TEXT= option is going to work for me though. Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 20:48:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-an-additional-excel-worksheet-of-text-only/m-p/626556#M184826</guid>
      <dc:creator>jpagitt</dc:creator>
      <dc:date>2020-02-21T20:48:44Z</dc:date>
    </item>
  </channel>
</rss>

