<?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: Footnote with text box and background color in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910297#M44143</link>
    <description>&lt;P&gt;Provide example data and full code for your current report.&lt;/P&gt;
&lt;P&gt;Something like this may be possible with a Break or Rbreak.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jan 2024 17:32:40 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-01-03T17:32:40Z</dc:date>
    <item>
      <title>Footnote with text box and background color</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910209#M44121</link>
      <description>&lt;P&gt;i have&amp;nbsp;&lt;/P&gt;
&lt;P&gt;footnote2 " NOTE :1) &amp;lt; 100 -WHITE, &lt;BR /&gt;2) between 100 to 200 --PINK, &lt;BR /&gt;3) above 200 ---RED";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i want&amp;nbsp;Footnote with text box and background color&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1704274515170.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92206iF2276ED27CF5CCAE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1704274515170.png" alt="Daily1_0-1704274515170.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2024 09:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910209#M44121</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2024-01-03T09:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Footnote with text box and background color</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910210#M44122</link>
      <description>&lt;P&gt;According to the documentation and tests I did for one footnote it's possible to have only one background colour and multiple text colours. You can consider creating separated footnotes too. See the code snippet below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="R:\test1.pdf"; 
title "Some title";
footnote1 "Some text";
footnote2 
bcolor=lightgrey "NOTE:" 
color=white "1) &amp;lt; 100 -WHITE,"
color=pink "2) between 100 to 200 --PINK,"
color=red "3) above 200 ---RED"
;

proc print data=sashelp.class(obs=7);
run;



ods _all_ close;
ods pdf file="R:\test2.pdf"; 
ods excel file="R:\test2.xlsx" 
options(
  EMBEDDED_FOOTNOTES="ON"
  EMBEDDED_TITLES="ON"
);
title "Some title";
footnote1 "Some text";
footnote2 bcolor=white"NOTE: 1) &amp;lt; 100 -WHITE,";
footnote3 bcolor=pink "2) between 100 to 200 --PINK,";
footnote4 bcolor=red "3) above 200 ---RED";
;

proc print data=sashelp.class(obs=7);
run;

ods excel close;
ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Jan 2024 09:59:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910210#M44122</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2024-01-03T09:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Footnote with text box and background color</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910222#M44123</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am using Proc Report, and I want footnotes to appear side by side .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Do you have any other possible suggestions, please?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_1-1704283058114.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92209i4A2C944AAD7058F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_1-1704283058114.png" alt="Daily1_1-1704283058114.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2024 12:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910222#M44123</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2024-01-03T12:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Footnote with text box and background color</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910297#M44143</link>
      <description>&lt;P&gt;Provide example data and full code for your current report.&lt;/P&gt;
&lt;P&gt;Something like this may be possible with a Break or Rbreak.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2024 17:32:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910297#M44143</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-01-03T17:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Footnote with text box and background color</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910383#M44147</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input (a b c d) ($80.);
cards;
NOTE:
1) &amp;lt; 100 -WHITE
2) between 100 to 200 --PINK
3) above 200 ---RED
;


ods excel file='c:\temp\temp.xlsx' options(sheet_interval='none') ;
proc report data=sashelp.class nowd;
run;

proc report data=have nowd noheader ;
column a b c d;
define b/style={bordercolor=black borderwidth=2};
define c/style={bordercolor=black borderwidth=2 background=pink};
define d/style={bordercolor=black borderwidth=2 background=red};
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1704345418344.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92252i9ACEC7E5FDC2E100/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1704345418344.png" alt="Ksharp_0-1704345418344.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 05:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Footnote-with-text-box-and-background-color/m-p/910383#M44147</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-01-04T05:17:07Z</dc:date>
    </item>
  </channel>
</rss>

