<?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 EG: Format Footnotes in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/871514#M42779</link>
    <description>&lt;P&gt;Dear community,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in SAS we can provide a footnote statement to provide such a piece of text and we can include formatting instructions.&lt;/P&gt;
&lt;P&gt;... but how to do this in EG? You certainly go Options-&amp;gt;Titles in the modify task dialog ... but then? How would you format&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"A &lt;STRONG&gt;Test&lt;/STRONG&gt;" (last word bold)?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is, that all text entered are quoted in the generated code ...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers fja&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: I am interested in a solution using the dialogs in EG ... I know how to do that using plain SAS programming ...&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2023 09:00:39 GMT</pubDate>
    <dc:creator>fja</dc:creator>
    <dc:date>2023-04-24T09:00:39Z</dc:date>
    <item>
      <title>EG: Format Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/871514#M42779</link>
      <description>&lt;P&gt;Dear community,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in SAS we can provide a footnote statement to provide such a piece of text and we can include formatting instructions.&lt;/P&gt;
&lt;P&gt;... but how to do this in EG? You certainly go Options-&amp;gt;Titles in the modify task dialog ... but then? How would you format&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"A &lt;STRONG&gt;Test&lt;/STRONG&gt;" (last word bold)?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is, that all text entered are quoted in the generated code ...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers fja&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: I am interested in a solution using the dialogs in EG ... I know how to do that using plain SAS programming ...&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 09:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/871514#M42779</guid>
      <dc:creator>fja</dc:creator>
      <dc:date>2023-04-24T09:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: EG: Format Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/873725#M42852</link>
      <description>I would format them in the output. What file are you outputting them to - Word?</description>
      <pubDate>Wed, 03 May 2023 20:17:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/873725#M42852</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2023-05-03T20:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: EG: Format Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874102#M42864</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;Thank you very much for your reply! No I use the SAS Report format as output. &lt;BR /&gt;... I am just wondering if something like is possible in a straight fashion&lt;BR /&gt;Cheers&lt;BR /&gt;fja&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 11:30:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874102#M42864</guid>
      <dc:creator>fja</dc:creator>
      <dc:date>2023-05-05T11:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: EG: Format Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874147#M42872</link>
      <description>Why not bold the "A" as well?:&lt;BR /&gt;&lt;BR /&gt;data a;&lt;BR /&gt;a = "cat";&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;footnote bold "A Test";&lt;BR /&gt;&lt;BR /&gt;proc print data =  a;&lt;BR /&gt;run;</description>
      <pubDate>Fri, 05 May 2023 14:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874147#M42872</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2023-05-05T14:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: EG: Format Footnotes</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874294#M42875</link>
      <description>&lt;P&gt;Make sure you have set an ODS ESCAPECHAR&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then use that to add style FONTWEIGHT=bold to your string.&lt;/P&gt;
&lt;PRE&gt;A ^{style [fontweight=bold] Test}&lt;/PRE&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  a = "cat";
run;

ods escapechar='^';
footnote "A ^{style [fontweight=bold] Test}";

proc print data = a;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1683404533078.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83669i4135AD37DCAE24F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1683404533078.png" alt="Tom_0-1683404533078.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 20:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-Format-Footnotes/m-p/874294#M42875</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-06T20:22:23Z</dc:date>
    </item>
  </channel>
</rss>

