<?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 Excel export in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932541#M44874</link>
    <description>&lt;P&gt;Boa tarde,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tenho duas tabelas e gostaria de gerar/exportar um arquivo único, em que, cada tabela ficasse em uma aba do excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Como fazer este procedimento?&lt;/P&gt;</description>
    <pubDate>Sat, 15 Jun 2024 16:14:07 GMT</pubDate>
    <dc:creator>Lucasmarques94</dc:creator>
    <dc:date>2024-06-15T16:14:07Z</dc:date>
    <item>
      <title>Excel export</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932541#M44874</link>
      <description>&lt;P&gt;Boa tarde,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tenho duas tabelas e gostaria de gerar/exportar um arquivo único, em que, cada tabela ficasse em uma aba do excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Como fazer este procedimento?&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 16:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932541#M44874</guid>
      <dc:creator>Lucasmarques94</dc:creator>
      <dc:date>2024-06-15T16:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel export</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932543#M44875</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="myexcelfile.xlsx" options(sheet_name='Table 1');
proc print data=table1;
run;
ods excel options(sheet_name='Table 2');
proc print data=table2;
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 15 Jun 2024 16:35:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932543#M44875</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-15T16:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Excel export</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932547#M44876</link>
      <description>Está aparecendo o seguinte erro: ERROR insuficiente authorization to access</description>
      <pubDate>Sat, 15 Jun 2024 17:34:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932547#M44876</guid>
      <dc:creator>Lucasmarques94</dc:creator>
      <dc:date>2024-06-15T17:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Excel export</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932552#M44877</link>
      <description>&lt;P&gt;Try creating the Excel file in a folder where you do have write permission/access.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 20:54:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932552#M44877</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-06-15T20:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Excel export</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932571#M44878</link>
      <description>&lt;P&gt;Use an absolute path (starts with a drive letter or backslash in Windows, or at root in UNIX) which points to a location where you have write permission.&lt;/P&gt;
&lt;P&gt;if you just need it temporarily (e.g. to attach the file to email), you can use the WORK location:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let loc = %sysfunc(pathname(work));

ods excel file="&amp;amp;loc./myexcelfile.xlsx" options(sheet_name='Table 1');

/* rest of code */&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Jun 2024 13:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-export/m-p/932571#M44878</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-06-16T13:28:40Z</dc:date>
    </item>
  </channel>
</rss>

