<?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 file multiple sheet names and unique titles and footnotes in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298247#M20315</link>
    <description>&lt;P&gt;This is a "feature" of Excel. &amp;nbsp;Titles and Footnotes are not shown in the default view of Excel. &amp;nbsp;If you set the screen to print preview view - lower right of the Excel screen - small icons, you will then see titles/footnotes.&lt;/P&gt;
&lt;P&gt;Do note also that your logic is incorrect. &amp;nbsp;The file is only created if the first file exists, you want to move the ods statement before the first %if check block.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Sep 2016 08:40:06 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2016-09-14T08:40:06Z</dc:date>
    <item>
      <title>ODS excel file multiple sheet names and unique titles and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298228#M20311</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am unable to&amp;nbsp;export a&amp;nbsp;title and a footnote along with a table to excel using proc report. However,&amp;nbsp;it does print the titles and footnotes along with the tables in the result section. What do I do wrong? Moreover, is it somehow possible to use different sheet names? (I am using SAS Enterprise Guide 7.1.) I really hope someone can help me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%if %sysfunc(exist(table_1.)) %then&lt;BR /&gt;%do;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods excel file="\\where_the_excel_output_goes" options(absolute_column_width='30' sheet_interval='PROC' sheet_name='sheetname')&lt;/P&gt;&lt;P&gt;style=pearl;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;title1 "Title1";&lt;BR /&gt;footnote "Footnote1";&lt;BR /&gt;proc report data=table_1 nowd;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%if %sysfunc(exist(table_2)) %then&lt;BR /&gt;%do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title1 "Title2";&lt;BR /&gt;footnote "Footnote2";&lt;/P&gt;&lt;P&gt;proc report data=table_2 nowd;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods excel close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 07:04:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298228#M20311</guid>
      <dc:creator>datj</dc:creator>
      <dc:date>2016-09-14T07:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel file multiple sheet names and unique titles and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298231#M20312</link>
      <description>&lt;P&gt;For your second question, try setting sheet_interval='none' in the initial ods statement, and then use separate ods excel options(sheetname="....") statements before the respective reports.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 07:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298231#M20312</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-09-14T07:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel file multiple sheet names and unique titles and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298247#M20315</link>
      <description>&lt;P&gt;This is a "feature" of Excel. &amp;nbsp;Titles and Footnotes are not shown in the default view of Excel. &amp;nbsp;If you set the screen to print preview view - lower right of the Excel screen - small icons, you will then see titles/footnotes.&lt;/P&gt;
&lt;P&gt;Do note also that your logic is incorrect. &amp;nbsp;The file is only created if the first file exists, you want to move the ods statement before the first %if check block.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 08:40:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298247#M20315</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-09-14T08:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS excel file multiple sheet names and unique titles and footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298249#M20316</link>
      <description>&lt;P&gt;Check if your title and footnote are in your header/footnote section of Excel.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check the embedded_title/footnote option which will move them to your main sheet.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of Excel are you using? You can check this with he following which puts the version to your log. Note that ODS Excel is pre-production until this latest release (9.4TS1M3) or M2?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%put &amp;amp;syslver;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best resource so far:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 08:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ODS-excel-file-multiple-sheet-names-and-unique-titles-and/m-p/298249#M20316</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-09-14T08:44:08Z</dc:date>
    </item>
  </channel>
</rss>

