<?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: Exporting a dataset to excel in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94082#M9457</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about "DDE"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2012 03:33:54 GMT</pubDate>
    <dc:creator>Haikuo</dc:creator>
    <dc:date>2012-08-15T03:33:54Z</dc:date>
    <item>
      <title>Exporting a dataset to excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94081#M9456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just curious,Is there any method to export a sas dataset to excel format except proc export or ODS ?&lt;/P&gt;&lt;P&gt;Anyone suggest on this please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 03:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94081#M9456</guid>
      <dc:creator>shru</dc:creator>
      <dc:date>2012-08-15T03:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting a dataset to excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94082#M9457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about "DDE"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 03:33:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94082#M9457</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-15T03:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting a dataset to excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94083#M9458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and, in addition to dde, using the excel engine in a libname statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 04:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94083#M9458</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-08-15T04:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting a dataset to excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94084#M9459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I remember On Windows Server 32 bits or on a local desktop installation you can import with something as :&lt;/P&gt;&lt;P&gt; LIBNAME ExcelLib ODBC Required="DBQ=&amp;amp;Directory.\&amp;amp;ExcelFile.;DriverId=790;Driver={Microsoft Excel Driver (*.xls)};DefaultDir=&amp;amp;Directory;FIL=excel 8.0;";&lt;/P&gt;&lt;P&gt; DATA _NULL_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExcelSheet = "ExcelLib.'&amp;amp;SheetName$'n&amp;amp;SASDataSetOptions";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL SYMPUT ("ExcelSheet", ExcelSheet);&lt;/P&gt;&lt;P&gt; RUN;&lt;/P&gt;&lt;P&gt; DATA &amp;amp;SASDataSet;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET &amp;amp;ExcelSheet;&lt;/P&gt;&lt;P&gt; RUN;&lt;/P&gt;&lt;P&gt; LIBNAME ExcelLib;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2012 11:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Exporting-a-dataset-to-excel/m-p/94084#M9459</guid>
      <dc:creator>lacrefa</dc:creator>
      <dc:date>2012-08-27T11:36:28Z</dc:date>
    </item>
  </channel>
</rss>

