<?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: export multiple tables to one excel file with one sheet   (tables are side by side each other) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402459#M19546</link>
    <description>&lt;P&gt;ODS TAGSETS does not support tables side by side.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use ODS MSOFFICE_2K as suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;or you can use a PROC EXPORT to a specific range that you can pre-calculate.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Oct 2017 18:40:52 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-10-09T18:40:52Z</dc:date>
    <item>
      <title>export multiple tables to one excel file with one sheet   (tables are side by side each other)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402318#M19540</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I want to print 3 tables &amp;nbsp;side by side in one excel sheet.&lt;/P&gt;&lt;P&gt;When I run my code 3 different excel sheets are created but I want to have only one sheet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods path work.temptemp(update) sasuser.templat(update)&lt;BR /&gt;sashelp.tmplmst(read);&lt;BR /&gt;ods path show;&lt;BR /&gt;ods tagsets.excelxp file="/usr/local/SAS/MidulOld/UserDir/Example.xls"&lt;BR /&gt;style=htmlblue;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a1;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;1 10&lt;BR /&gt;2 20&lt;BR /&gt;3 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a2;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;4 10&lt;BR /&gt;5 20&lt;BR /&gt;6 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a3;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;7 10&lt;BR /&gt;8 20&lt;BR /&gt;9 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 11:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402318#M19540</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2017-10-09T11:15:10Z</dc:date>
    </item>
    <item>
      <title>export multiple tables to one excel file with one sheet   (tables are side by side each other)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402320#M19544</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I want to export &amp;nbsp;3 tables &amp;nbsp;to one excel file with one sheet only where tables are &amp;nbsp;side by side&amp;nbsp;.&lt;/P&gt;&lt;P&gt;When I run my code 3 different excel sheets are created but I want to have only one sheet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods path work.temptemp(update) sasuser.templat(update)&lt;BR /&gt;sashelp.tmplmst(read);&lt;BR /&gt;ods path show;&lt;BR /&gt;ods tagsets.excelxp file="/usr/local/SAS/MidulOld/UserDir/Example.xls"&lt;BR /&gt;style=htmlblue;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a1;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;1 10&lt;BR /&gt;2 20&lt;BR /&gt;3 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a2;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;4 10&lt;BR /&gt;5 20&lt;BR /&gt;6 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp options(embedded_titles='yes'&lt;BR /&gt;sheet_interval='none' sheet_name='tables'&lt;BR /&gt;absolute_column_width="12,13");&lt;BR /&gt;Title;&lt;BR /&gt;proc print data=a1 noobs label;&lt;BR /&gt;Run;&lt;BR /&gt;Data a3;&lt;BR /&gt;input x y;&lt;BR /&gt;cards;&lt;BR /&gt;7 10&lt;BR /&gt;8 20&lt;BR /&gt;9 30&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 11:16:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402320#M19544</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2017-10-09T11:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: export multiple tables to one excel file with one sheet   (tables are side by side each other)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402360#M19545</link>
      <description>&lt;P&gt;Check&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;tagsets.msoffice2k_x&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 13:27:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402360#M19545</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-10-09T13:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: export multiple tables to one excel file with one sheet   (tables are side by side each other)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402459#M19546</link>
      <description>&lt;P&gt;ODS TAGSETS does not support tables side by side.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use ODS MSOFFICE_2K as suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;or you can use a PROC EXPORT to a specific range that you can pre-calculate.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 18:40:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/export-multiple-tables-to-one-excel-file-with-one-sheet-tables/m-p/402459#M19546</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-09T18:40:52Z</dc:date>
    </item>
  </channel>
</rss>

