<?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 export multipe file in same excel with different sheet in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318994#M69959</link>
    <description>Is your question as follows:&lt;BR /&gt;You have different files(e.g .txt or .csv) in different locations. Now you want them in one excel with multiple sheets.&lt;BR /&gt;If not please be clear on your question.</description>
    <pubDate>Wed, 14 Dec 2016 16:58:38 GMT</pubDate>
    <dc:creator>SuryaKiran</dc:creator>
    <dc:date>2016-12-14T16:58:38Z</dc:date>
    <item>
      <title>How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318815#M69907</link>
      <description>Hi friends , there is a requirement of multiple file have different locations are export to excel ..each file to each sheet ... Mainly we want on proc report if possible.</description>
      <pubDate>Wed, 14 Dec 2016 11:15:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318815#M69907</guid>
      <dc:creator>Badshaah</dc:creator>
      <dc:date>2016-12-14T11:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318881#M69924</link>
      <description>&lt;P&gt;With &lt;FONT face="courier new,courier"&gt;ods tagsets.excelxp&lt;/FONT&gt;, you can assign the sheetname manually before each &lt;FONT face="courier new,courier"&gt;proc report&lt;/FONT&gt; step.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Dec 2016 12:26:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318881#M69924</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-12-14T12:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318982#M69954</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;This will create sheets 'class' and 'shoes' at A1


ods excel file="d:/xls/rpt1.xlsx";
ods excel options(sheet_name="class" start_at="A1");
proc report data=sashelp.class;
run;quit;

ods excel options(sheet_name="shoes" start_at="A1");
proc report data=sashelp.class;
run;quit;
ods excel close;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Dec 2016 16:03:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318982#M69954</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-12-14T16:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318994#M69959</link>
      <description>Is your question as follows:&lt;BR /&gt;You have different files(e.g .txt or .csv) in different locations. Now you want them in one excel with multiple sheets.&lt;BR /&gt;If not please be clear on your question.</description>
      <pubDate>Wed, 14 Dec 2016 16:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/318994#M69959</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2016-12-14T16:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/319151#M70012</link>
      <description>Yes exactly, different file at different locations in same excel with savings at different sheets as per file.</description>
      <pubDate>Thu, 15 Dec 2016 04:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/319151#M70012</guid>
      <dc:creator>Badshaah</dc:creator>
      <dc:date>2016-12-15T04:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: How export multipe file in same excel with different sheet</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/319335#M70113</link>
      <description>&lt;P&gt;Use&amp;nbsp;INFILE in datastep to create datasets from the raw files in differnt location and then use ODS&amp;nbsp;TAGSETS to create multi-sheets workbook.&lt;/P&gt;&lt;P&gt;FYI: &lt;A href="http://support.sas.com/resources/papers/proceedings12/276-2012.pdf&amp;nbsp;" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings12/276-2012.pdf&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 17:43:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-export-multipe-file-in-same-excel-with-different-sheet/m-p/319335#M70113</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2016-12-15T17:43:35Z</dc:date>
    </item>
  </channel>
</rss>

