<?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 the datasets to as excel file in different tab in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932251#M41922</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname exc xlsx "C:\Users\kojuramesh\Documents\transactions.xlsx";

proc copy in=work out=exc;
select check_transactions cas_transactions;
run;

libname exc clear;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 13 Jun 2024 18:38:12 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2024-06-13T18:38:12Z</dc:date>
    <item>
      <title>how to export the datasets to as excel file in different tab</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932210#M41917</link>
      <description>&lt;P&gt;code to export two output datasets as excel file into different tabs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example: output datasets Check_transactions and Cash_transactions export as Transactions excel file to local C:\Users\kojuramesh\Documents&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 16:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932210#M41917</guid>
      <dc:creator>kojuramesh</dc:creator>
      <dc:date>2024-06-13T16:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to export the datasets to as excel file in different tab</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932213#M41918</link>
      <description>&lt;P&gt;Not with PROC Export and likely not with any Export data widget or task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS and Proc print:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods excel file="x:\example.xlsx" options(sheet_interval='PROC');

proc print data=sashelp.class noobs;
run;

proc print data=sashelp.cars noobs;
run;

ods excel close;&lt;/PRE&gt;
&lt;P&gt;There are other valid sheet_interval options but this is likely to work for this sort of thing IF the data sets are small enough to fit on a single sheet.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 16:17:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932213#M41918</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-06-13T16:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to export the datasets to as excel file in different tab</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932251#M41922</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname exc xlsx "C:\Users\kojuramesh\Documents\transactions.xlsx";

proc copy in=work out=exc;
select check_transactions cas_transactions;
run;

libname exc clear;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2024 18:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-export-the-datasets-to-as-excel-file-in-different-tab/m-p/932251#M41922</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-06-13T18:38:12Z</dc:date>
    </item>
  </channel>
</rss>

