<?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: Creating Footnote for webpage in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12279#M1618</link>
    <description>Thanks for your time.</description>
    <pubDate>Tue, 14 Jun 2011 19:45:41 GMT</pubDate>
    <dc:creator>fadt</dc:creator>
    <dc:date>2011-06-14T19:45:41Z</dc:date>
    <item>
      <title>Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12275#M1614</link>
      <description>Hi everyone, I am trying to create footnote for a webpage that has various years of data and each year will have a different footnote. How can I get this done?</description>
      <pubDate>Mon, 13 Jun 2011 17:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12275#M1614</guid>
      <dc:creator>fadt</dc:creator>
      <dc:date>2011-06-13T17:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12276#M1615</link>
      <description>[pre]&lt;BR /&gt;
options nobyline;&lt;BR /&gt;
data air;&lt;BR /&gt;
 set sashelp.air;&lt;BR /&gt;
 year=year(date);&lt;BR /&gt;
run;&lt;BR /&gt;
ods html file='c:\temp\data.html' style=sasweb ;&lt;BR /&gt;
title;&lt;BR /&gt;
proc report data=air nowd;&lt;BR /&gt;
by year;&lt;BR /&gt;
column date air;&lt;BR /&gt;
define date/display;&lt;BR /&gt;
run;&lt;BR /&gt;
footnote 'year:  #byval1';&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Tue, 14 Jun 2011 03:43:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12276#M1615</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-06-14T03:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12277#M1616</link>
      <description>Thanks, Ksharp it worked.&lt;BR /&gt;
But let me ask this, is it possible to customize the footnote for each year?.&lt;BR /&gt;
So that there will be different footnote for each of the years.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
fadt.</description>
      <pubDate>Tue, 14 Jun 2011 13:56:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12277#M1616</guid>
      <dc:creator>fadt</dc:creator>
      <dc:date>2011-06-14T13:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12278#M1617</link>
      <description>Hi:&lt;BR /&gt;
  When you use any of the #byval or #byline features, the text is the same and the only piece of the title that changes is the #byval -- in this case only the year changes.&lt;BR /&gt;
&lt;BR /&gt;
  If you create your output with BY groups and save it the output  in an ODS DOCUMENT store, you can manipulate the output and/or put a completely different title or footnote for every BY group using PROC DOCUMENT statements.&lt;BR /&gt;
&lt;BR /&gt;
  There is an example of doing something similar on page 21 of this paper:&lt;BR /&gt;
&lt;A href="http://support.sas.com/resources/papers/sgf09/318-2009.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/sgf09/318-2009.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
You can see that the OBBNOTE statement set the title for Canada to 'Something' and the title for Germany to 'Something Else'. The OBBNOTE is a "before" note and the OBANOTE statement would be set for an "after" note.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 14 Jun 2011 14:12:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12278#M1617</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-06-14T14:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12279#M1618</link>
      <description>Thanks for your time.</description>
      <pubDate>Tue, 14 Jun 2011 19:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12279#M1618</guid>
      <dc:creator>fadt</dc:creator>
      <dc:date>2011-06-14T19:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Footnote for webpage</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12280#M1619</link>
      <description>[pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data air;&lt;BR /&gt;
 set sashelp.air;&lt;BR /&gt;
 year=year(date);&lt;BR /&gt;
run;&lt;BR /&gt;
ods html file='c:\temp\data.html' style=sasweb ;&lt;BR /&gt;
ods escapechar='~';&lt;BR /&gt;
title;&lt;BR /&gt;
proc report data=air nowd;&lt;BR /&gt;
where year eq 1950;&lt;BR /&gt;
column date air;&lt;BR /&gt;
define date/display;&lt;BR /&gt;
run;&lt;BR /&gt;
ods text="~S={asis=on fontsize=20px  }                          Footnote A";&lt;BR /&gt;
ods text='  ';&lt;BR /&gt;
&lt;BR /&gt;
proc report data=air nowd;&lt;BR /&gt;
where year eq 1951;&lt;BR /&gt;
column date air;&lt;BR /&gt;
define date/display;&lt;BR /&gt;
run;&lt;BR /&gt;
ods text='Footnote B';&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc report data=air nowd;&lt;BR /&gt;
where year eq 1952;&lt;BR /&gt;
column date air;&lt;BR /&gt;
define date/display;&lt;BR /&gt;
run;&lt;BR /&gt;
ods text='Footnote C';&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Thu, 16 Jun 2011 03:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-Footnote-for-webpage/m-p/12280#M1619</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-06-16T03:45:13Z</dc:date>
    </item>
  </channel>
</rss>

