<?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: Multiple tables in multiple sheets with ODS Excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772100#M245120</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess &lt;A href="https://communities.sas.com/t5/SAS-Programming/Export-to-XLSX-Excel-2-sheets-and-3-tables-in-each-sheet/m-p/770457#M244440" target="_blank" rel="noopener"&gt;this&lt;/A&gt; answers your question&lt;/P&gt;</description>
    <pubDate>Tue, 05 Oct 2021 09:44:14 GMT</pubDate>
    <dc:creator>Oligolas</dc:creator>
    <dc:date>2021-10-05T09:44:14Z</dc:date>
    <item>
      <title>Multiple tables in multiple sheets with ODS Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772038#M245085</link>
      <description>&lt;P&gt;Dear experts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this issue, I need to export 13 tables in 9 sheets, trying to use this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="\\mxnpr1fs0003.glb.bns.mx\mxcpr1condhb1\tmp\SUGEF_asiento_psc.xlsx"

options(sheet_name="Valida_saldos_Gio" frozen_headers='1' sheet_interval="now");
proc print data=work.a1_tabla4_valida;
run;

ods excel options(sheet_name="Ajustes_Tab_1" frozen_headers='1' sheet_interval="now");
proc print data=work.ajustes_manuales_1;
run;

ods excel options(sheet_name="Resumen_Tab_1" frozen_headers='1' sheet_interval="now");
proc print data=work.a1_resumen1;
run;

ods excel options(sheet_name="Tabla_1_EDL" frozen_headers='1' sheet_interval="none");
proc print data=work.a1_total1;
run;

proc print data=work.a1_total;
run;

ods excel options(sheet_interval="now");

ods excel options(sheet_name="Tabla_2_Sugef" frozen_headers='1' sheet_interval="none");
proc print data=work.a2_total1;
run;

proc print data=work.a2_total;
run;

ods excel options(sheet_name="Ajustes_Tab_2" frozen_headers='1' sheet_interval="now");
proc print data=work.ajustes_manuales_2;
run;

ods excel options(sheet_name="Validacion_SUGEF" frozen_headers='1' sheet_interval="now");
proc print data=work.a2_valida_final;
run;

ods excel options(sheet_name="Asiento_1" frozen_headers='1' sheet_interval="none");
proc print data=work.asiento_1_final;
run;

proc print data=work.valida_asiento_1;
run;

ods excel options(sheet_name="Asiento_2" frozen_headers='1' sheet_interval="none");
proc print data=work.asiento_2_final;
run;

proc print data=work.valida_asiento_2;
run;

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but some tables are in the same tables so I'm not sure where's the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for all your advise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fer&lt;/P&gt;</description>
      <pubDate>Mon, 04 Oct 2021 22:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772038#M245085</guid>
      <dc:creator>japfvg</dc:creator>
      <dc:date>2021-10-04T22:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple tables in multiple sheets with ODS Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772040#M245086</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310332"&gt;@japfvg&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;... but some tables are in the same tables so I'm not sure where's the issue.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please explain this further, and show us a screen capture(s) of what the problem is (use the "Insert Photos" icon to include screen captures, do not attach files).&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 00:41:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772040#M245086</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-10-05T00:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple tables in multiple sheets with ODS Excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772100#M245120</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess &lt;A href="https://communities.sas.com/t5/SAS-Programming/Export-to-XLSX-Excel-2-sheets-and-3-tables-in-each-sheet/m-p/770457#M244440" target="_blank" rel="noopener"&gt;this&lt;/A&gt; answers your question&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 09:44:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-tables-in-multiple-sheets-with-ODS-Excel/m-p/772100#M245120</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2021-10-05T09:44:14Z</dc:date>
    </item>
  </channel>
</rss>

