<?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: Export multiple data set from SAS in Excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135654#M295703</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try DBMS=EXCEL as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Jan 2015 20:52:56 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-01-23T20:52:56Z</dc:date>
    <item>
      <title>Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135645#M295694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have used the code below to export 3 data set in excel:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;%macro&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; export(dst=);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;proc export&amp;nbsp; data=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal; font-size: 10pt;"&gt;mywork.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;amp;dst&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"h:\My Documents\MyFile\SAS\MyWork\Result.XLS"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Label dbms=xls Replace;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sheet=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;" "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;%mend&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG&gt;&lt;EM&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Comparison);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG&gt;&lt;EM&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Test1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG&gt;&lt;EM&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Test2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The log summarize successfull but i am unable to open the file Result.xls from my directory. When i try to open it : &lt;STRONG&gt;"Excel found unreadable content in Result.xls.Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes."&amp;nbsp; &lt;/STRONG&gt;I clicked yes but it does not open.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 17:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135645#M295694</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T17:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135646#M295695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I never tried an export where&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sheet=" ";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens if you actually give a sheet name or comment out this line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 17:51:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135646#M295695</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-01-23T17:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135647#M295696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it's still showing the same error message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:36:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135647#M295696</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T18:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135648#M295697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How big is your dataset? What version of Excel and SAS are you on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:49:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135648#M295697</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-23T18:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135649#M295698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many variables in any of those set?&lt;/P&gt;&lt;P&gt;How many observations?&lt;/P&gt;&lt;P&gt;If you set DBMS=CSV do you get the same problem?(don't use sheet option with csv)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:54:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135649#M295698</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-23T18:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135650#M295699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excel 2010 and SAS 9.3&lt;/P&gt;&lt;P&gt;The first data set 36440 (6 variables) rows and the two remaining data set are 1 row&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135650#M295699</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T19:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135651#M295700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="260198" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;the csv works but i am getting only the last data set (Test2). And one i take out the "Replace", only the first data set is exported.&lt;/P&gt;&lt;P&gt;How to get all of them in one workbook?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135651#M295700</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T19:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135652#M295701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can apply a hot fix and use XLSX engine. &lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/51/580.html" title="http://support.sas.com/kb/51/580.html"&gt;51580 - The XLSX engine is enhanced to write multiple sheets per Microsoft Excel file in the first maintenance release of SAS® 9.3 (TS1M1)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or try changing DBMS to Excel or ExcelCS. You may want to change your sheet names as well, to a dynamic variable otherwise you'll always overwrite the sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy; background-color: white;"&gt;%macro&lt;/STRONG&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt; export(dst=);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;proc export&amp;nbsp; data=&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: teal;"&gt;mywork.&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;amp;dst&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile=&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: purple;"&gt;"h:\My Documents\MyFile\SAS\MyWork\Result.XLSX"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Label dbms=ExcelCS Replace;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sheet=&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: purple;"&gt;"&amp;amp;dst"&lt;/SPAN&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy; background-color: white;"&gt;%mend&lt;/STRONG&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Comparison);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Test1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: 'Courier New'; background-color: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;export&lt;/EM&gt;&lt;/STRONG&gt;(dst=Test2);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135652#M295701</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-23T20:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135653#M295702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I could not apply the hot fix. So i tried the last option and i go this error message: &lt;STRONG&gt;Failed to connect to the Server&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Is there a way we work around the idea in Post 6? thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:47:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135653#M295702</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T20:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135654#M295703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try DBMS=EXCEL as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:52:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135654#M295703</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-23T20:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135655#M295704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever used the LIBNAME Excel approach? &lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/63181/HTML/default/viewer.htm#n1wvmggexroxgyn17rp61jml3cvn.htm" title="http://support.sas.com/documentation/cdl/en/acpcref/63181/HTML/default/viewer.htm#n1wvmggexroxgyn17rp61jml3cvn.htm"&gt;SAS/ACCESS(R) 9.3 Interface to PC Files: Reference&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Sheets are the same as the SAS-datasets.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 21:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135655#M295704</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-01-23T21:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple data set from SAS in Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135656#M295705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, long day. it did work with Excel. Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 21:24:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-multiple-data-set-from-SAS-in-Excel/m-p/135656#M295705</guid>
      <dc:creator>Armand</dc:creator>
      <dc:date>2015-01-23T21:24:14Z</dc:date>
    </item>
  </channel>
</rss>

