<?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: How to export all dataset present in work library to an excel file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591804#M169602</link>
    <description>&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;But i want all the datasets&amp;nbsp; at once in one excel workbook having multiple sheets (sheets name must be the dataset name).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2019 09:48:12 GMT</pubDate>
    <dc:creator>Soham0707</dc:creator>
    <dc:date>2019-09-26T09:48:12Z</dc:date>
    <item>
      <title>How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591482#M169432</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here, i want to export all the dataset from work library to an excel file.&lt;/P&gt;&lt;P&gt;Need code for that.&lt;/P&gt;&lt;P&gt;can anyone help me for this?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 12:33:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591482#M169432</guid>
      <dc:creator>Soham0707</dc:creator>
      <dc:date>2019-09-25T12:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591490#M169437</link>
      <description>&lt;P&gt;PROC COPY&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data one two three;
   set sashelp.class;
   run;
libname xl xlsx 'newbook.xlsx';
proc copy in=work out=xl;
   run;
libname xl clear;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Sep 2019 13:00:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591490#M169437</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-09-25T13:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591495#M169441</link>
      <description>&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; Very neat. Does that handle exporting to multiple sheets appropriately with the naming convention?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, I am yet to test that sweet solution. Pardon me.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 13:05:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591495#M169441</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-09-25T13:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591506#M169447</link>
      <description>&lt;P&gt;Yes in this case there are three sheet tabs named one two three. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp; Very neat. Does that handle exporting to multiple sheets appropriately with the naming convention?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, I am yet to test that sweet solution. Pardon me.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 356px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32730i6CE3A4CDE153087A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 13:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591506#M169447</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-09-25T13:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591508#M169449</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 13:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591508#M169449</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-09-25T13:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591804#M169602</link>
      <description>&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;But i want all the datasets&amp;nbsp; at once in one excel workbook having multiple sheets (sheets name must be the dataset name).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 09:48:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591804#M169602</guid>
      <dc:creator>Soham0707</dc:creator>
      <dc:date>2019-09-26T09:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591828#M169620</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Have you tried the code suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp;?&amp;nbsp; I think it does what you ask.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 11:49:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591828#M169620</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2019-09-26T11:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591834#M169625</link>
      <description>yes it works&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Sep 2019 12:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591834#M169625</guid>
      <dc:creator>Soham0707</dc:creator>
      <dc:date>2019-09-26T12:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to export all dataset present in work library to an excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591835#M169626</link>
      <description>&lt;P&gt;Thank you very much data_null_.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 12:10:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-all-dataset-present-in-work-library-to-an-excel/m-p/591835#M169626</guid>
      <dc:creator>Soham0707</dc:creator>
      <dc:date>2019-09-26T12:10:23Z</dc:date>
    </item>
  </channel>
</rss>

