<?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 tagsets.excelxp footnote not appearing in Excel file for each table / procedure in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243146#M15059</link>
    <description>&lt;P&gt;The reason you are not seeing footnotes is because that is the default action of Excel. &amp;nbsp;Excel is not a proper review format even though it appears everyone thinks it is. &amp;nbsp;If you goto the lower right of your Excel fil you will see three icons and a scroll bar. &amp;nbsp;If you select the middle icon - which will say print layout when hovered over - then it will show you the Excel file as a proper print format. The question is, if you want a review document with document features, then why not use a document format - PDF, RTF etc. which are built for that purpose?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One other note, you appear to have re-saved that document as a .xls file. &amp;nbsp;As the program you have given is actually generating XML output (which Excel can interpret) its a good idea not to name the output file xls, but rather xml. &amp;nbsp;You can still associate the extension xml with excel and get the same functionality, but someone taking the file will then know the contents of the file - which is what extensions are for (i.e. right click open with).&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jan 2016 09:51:27 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2016-01-13T09:51:27Z</dc:date>
    <item>
      <title>ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243071#M15056</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like footnotes to appear after&amp;nbsp;each procedure that is run and output to excel. Currently, I run my ods tagsets.excelxp and even if I have footnotes for each procedure, it only appears after the last procedure in the excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an example of my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro rt (var= );

title "&amp;amp;var";
proc tabulate data=dsn;
var count rate;
class year &amp;amp;var ;
table &amp;amp;var , year*(Count Rate);
footnote "This is a footnote";
run;
footnote;
title;

%mend rt;

ods tagsets.excelxp path="c:\filepath" 
file="excelfilename.xls"
style = statistical 
options (embedded_titles = 'yes' 
		embedded_footnotes = 'yes' 
		sheet_name="sheetname"
		sheet_interval = 'none'
		merge_titles_footnotes="yes");

%rt(var= Sex)
%rt(var= Race)
%rt(var= Age)

ods tagsets.excelxp close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The attached excel file is how it turns out. I'd like the footnote after each table.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 21:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243071#M15056</guid>
      <dc:creator>honk</dc:creator>
      <dc:date>2016-01-12T21:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243077#M15057</link>
      <description>&lt;P&gt;Verify that you're using the latest tagsets. Using the latest version I don't see the issue you're having. You can find a NOTE in your log indicating the version, it should match the information below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: This is the Excel XP tagset (Compatible with SAS 9.1.3 and above, v1.131, 04/23/2015).
Add options(doc='help') to the ods statement for more information.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can download the latest version here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/index.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 22:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243077#M15057</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-12T22:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243099#M15058</link>
      <description>&lt;P&gt;Try delete :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;footnote;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or switch to use :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods text="This is a footnote";
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Jan 2016 01:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243099#M15058</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-13T01:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243146#M15059</link>
      <description>&lt;P&gt;The reason you are not seeing footnotes is because that is the default action of Excel. &amp;nbsp;Excel is not a proper review format even though it appears everyone thinks it is. &amp;nbsp;If you goto the lower right of your Excel fil you will see three icons and a scroll bar. &amp;nbsp;If you select the middle icon - which will say print layout when hovered over - then it will show you the Excel file as a proper print format. The question is, if you want a review document with document features, then why not use a document format - PDF, RTF etc. which are built for that purpose?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One other note, you appear to have re-saved that document as a .xls file. &amp;nbsp;As the program you have given is actually generating XML output (which Excel can interpret) its a good idea not to name the output file xls, but rather xml. &amp;nbsp;You can still associate the extension xml with excel and get the same functionality, but someone taking the file will then know the contents of the file - which is what extensions are for (i.e. right click open with).&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 09:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243146#M15059</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-01-13T09:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243168#M15060</link>
      <description>Because embedded_footnotes option is specified they should show up by default, and they did in a test run on my PC.</description>
      <pubDate>Wed, 13 Jan 2016 13:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243168#M15060</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-13T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: ODS tagsets.excelxp footnote not appearing in Excel file for each table / procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243239#M15061</link>
      <description>&lt;P&gt;Simple solution. Mine was:&lt;/P&gt;
&lt;P&gt;NOTE: This is the Excel XP tagset (Compatible with SAS 9.1.3 and above, v1.127, 09/26/2011).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I updated to the most recent version you specified and it functions properly now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 16:12:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-tagsets-excelxp-footnote-not-appearing-in-Excel-file-for/m-p/243239#M15061</guid>
      <dc:creator>honk</dc:creator>
      <dc:date>2016-01-13T16:12:00Z</dc:date>
    </item>
  </channel>
</rss>

