<?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: ODS Excel Output in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355987#M23441</link>
    <description>&lt;P&gt;There is a bug in ODS EXCEL that controls how pages are generated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you search on here I posted a workaround, it's also on an blog post from Chris Hemedinger&lt;/P&gt;</description>
    <pubDate>Thu, 04 May 2017 14:41:59 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-05-04T14:41:59Z</dc:date>
    <item>
      <title>ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355898#M23427</link>
      <description>&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to generate Excel report with multiple sheet. for this i am using the below given code. My problem is even though i am specifying multiple sheet name in the code, All are coming in a single sheet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;ods excel file=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"Operationsreport.xls"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;ods excel OPTIONS (&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;embedded_titles=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"yes"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;sheet_interval=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"none"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;sheet_name=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"Account Opening"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;select item_desc &lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,field1 &lt;FONT color="#800080"&gt;,field2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;from table1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;order by item_code;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;select item_desc &lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,field1 &lt;FONT color="#800080"&gt;,field2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;from table2&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;order by item_code;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods excel OPTIONS (&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;embedded_titles=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"yes"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;sheet_interval=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"none"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;sheet_name=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"Modification Process"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;select item_desc &lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,field1 &lt;FONT color="#800080"&gt;,field2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;from table3&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;order by item_code;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;select item_desc &lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,field1 &lt;FONT color="#800080"&gt;,field2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;from table4&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;order by item_code;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;FONT face="Courier New"&gt;sheet_interval=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"none" option is not working i guess.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;Please guide.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;Aneesh&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 09:32:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355898#M23427</guid>
      <dc:creator>aneeshv</dc:creator>
      <dc:date>2017-05-04T09:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355901#M23428</link>
      <description>&lt;P&gt;Sheet_interval="none" means that there will be no sheet_intervals, i.e. all output appears on one sheet. &amp;nbsp;I would guess (and haven't time to check) that you really want sheet_interval="proc" or something like that so each procedures output appears on a new sheet. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 09:44:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355901#M23428</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-04T09:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355920#M23435</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Thanks for the reply.

Our actual requirement is to print multiple proc outputs into a single sheet.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 May 2017 10:55:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355920#M23435</guid>
      <dc:creator>aneeshv</dc:creator>
      <dc:date>2017-05-04T10:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355922#M23436</link>
      <description>&lt;P&gt;Sorry, I am confused. &amp;nbsp;You initial post:&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am trying to generate Excel report with multiple sheet. for this i am using the below given code. My problem is even though i am specifying multiple sheet name in the code, All are coming in a single sheet.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is the exacy opposite of what you post now? &amp;nbsp;If you want all in one sheet, then sheet_interval="none" and don't specify sheet name options in each block. &amp;nbsp;If you want separate output sheets, then sheet_interval="proc" and specify sheet_name in each instance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 11:04:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355922#M23436</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-04T11:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355924#M23437</link>
      <description>&lt;P&gt;Sorry for the confusion.&lt;/P&gt;&lt;P&gt;My actual requirement is multiple sheet with different tables in each sheet.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 11:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355924#M23437</guid>
      <dc:creator>aneeshv</dc:creator>
      <dc:date>2017-05-04T11:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355926#M23438</link>
      <description>&lt;P&gt;Just change to:&lt;/P&gt;
&lt;PRE&gt;ods excel file="Operationsreport.xls"  options(
  embedded_titles="yes"
  sheet_interval="proc"
  sheet_name="Account Opening")&lt;/PRE&gt;
&lt;P&gt;And only set it once at the top. &amp;nbsp;Each further change in sheet name should only look like:&lt;/P&gt;
&lt;PRE&gt;ods excel options(sheet_name="Modification Process");&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 May 2017 11:32:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355926#M23438</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-04T11:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel Output</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355987#M23441</link>
      <description>&lt;P&gt;There is a bug in ODS EXCEL that controls how pages are generated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you search on here I posted a workaround, it's also on an blog post from Chris Hemedinger&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 14:41:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-Excel-Output/m-p/355987#M23441</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-04T14:41:59Z</dc:date>
    </item>
  </channel>
</rss>

