<?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 Output/creating multiple excel documents - with preexisting excel template in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306871#M65677</link>
    <description>&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to report my data in 2 excel sheets, therefore I am usinf the option sheet interval = non but how can I move to the next sheet afterwards? I checke the forum and someone mentioned a bug, any news on it? Thanks a lot in advance for your support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods select all;&lt;BR /&gt;ods excel options(&lt;BR /&gt;sheet_interval="none"&lt;BR /&gt;suppress_bylines="yes"&lt;BR /&gt;sheet_label="sheet2"&lt;BR /&gt;embedded_titles="yes"&lt;BR /&gt;embed_titles_once="yes"&lt;BR /&gt;);&lt;BR /&gt;ods excel close&lt;/P&gt;&lt;P&gt;%include "W:\04-Programfiles\dashboard\monitoring_S02_claims_as-is_analysis.sas";&lt;/P&gt;&lt;P&gt;ods excel close&lt;BR /&gt;;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;SH&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2016 16:27:26 GMT</pubDate>
    <dc:creator>Sir_Highbury</dc:creator>
    <dc:date>2016-10-24T16:27:26Z</dc:date>
    <item>
      <title>Output/creating multiple excel documents - with preexisting excel template</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306871#M65677</link>
      <description>&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to report my data in 2 excel sheets, therefore I am usinf the option sheet interval = non but how can I move to the next sheet afterwards? I checke the forum and someone mentioned a bug, any news on it? Thanks a lot in advance for your support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods select all;&lt;BR /&gt;ods excel options(&lt;BR /&gt;sheet_interval="none"&lt;BR /&gt;suppress_bylines="yes"&lt;BR /&gt;sheet_label="sheet2"&lt;BR /&gt;embedded_titles="yes"&lt;BR /&gt;embed_titles_once="yes"&lt;BR /&gt;);&lt;BR /&gt;ods excel close&lt;/P&gt;&lt;P&gt;%include "W:\04-Programfiles\dashboard\monitoring_S02_claims_as-is_analysis.sas";&lt;/P&gt;&lt;P&gt;ods excel close&lt;BR /&gt;;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;SH&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2016 16:27:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306871#M65677</guid>
      <dc:creator>Sir_Highbury</dc:creator>
      <dc:date>2016-10-24T16:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Output/creating multiple excel documents - with preexisting excel template</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306891#M65685</link>
      <description>&lt;P&gt;IMHO, with sheet_interval=none you can not create multisheet excel files. ODS EXCEL seems not to be as flexible as EXCELXP is, since it doesn't allow to switch or to display 2 tables on sheet and 1 table on the other.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Multisheets with one table can be created like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="c:\example.xlsx"
options(
suppress_bylines="yes"
sheet_label="class"
embedded_titles="yes"
embed_titles_once="yes"
);
proc print data=sashelp.class (obs=5);run;
 
ods excel options(
suppress_bylines="yes"
sheet_label="only cars"
embedded_titles="yes"
embed_titles_once="yes"
);
proc print data=sashelp.cars (obs=5);run;
 
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Oct 2016 17:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306891#M65685</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2016-10-24T17:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Output/creating multiple excel documents - with preexisting excel template</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306894#M65687</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77163"&gt;@Oligolas﻿&lt;/a&gt;&amp;nbsp;You can create multi sheet and control it, but it's buggy right now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2016 17:50:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-creating-multiple-excel-documents-with-preexisting-excel/m-p/306894#M65687</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-24T17:50:04Z</dc:date>
    </item>
  </channel>
</rss>

