<?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: How to align footnote to the left of the table using Proc Tabulate in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815532#M321906</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "Syphilis Cases with Adverse Outcomes by Month";
options missing=0;
ods escapechar='~';
proc tabulate data=sashelp.class missing;
class sex age/ preloadfmt;
var weight;
table sex=""*age="", weight/ printmiss BOX="Adverse Outcomes";
footnote1 j=l "%sysfunc(repeat(~_,115))2022 is preliminary data";
footnote2 j=l "%sysfunc(repeat(~_,115))Adverse Outcomes includes Syphilis cases where Neuro/Ocular/Otic/Late Clinical Manifestations is indicated as Possible, Likely or Confirmed";
footnote3 j=l "%sysfunc(repeat(~_,115))Clinical Manifestations are not mutually exclusive";
footnote4 j=l "%sysfunc(repeat(~_,115))Excludes Congenital Syphilis cases";
footnote5 j=l "%sysfunc(repeat(~_,115))Data subject to change as additional information is reported";
footnote6 j=l "%sysfunc(repeat(~_,115))Source: Ohio Department of Health, STD Surveillance Programs.";
footnote7 j=l "%sysfunc(repeat(~_,115))STD Surveillance data reported through edate. ";
run;&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-1653734167822.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71834iBCEF2255A998F7E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1653734167822.png" alt="Ksharp_0-1653734167822.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 28 May 2022 10:36:11 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2022-05-28T10:36:11Z</dc:date>
    <item>
      <title>How to align footnote to the left of the table using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815507#M321898</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am trying to align my footnote to the left of the table. I tried j=left but that aligns it to the left of the margin instead of to the left of the table. Is there a way to align left of the table instead?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/*Syphilis Adverse Outcomes*/&lt;BR /&gt;title 'Syphilis Cases with Adverse Outcomes by Month';&lt;BR /&gt;options missing=0;&lt;BR /&gt;proc tabulate data=work.adverse_outcomes2 missing;&lt;BR /&gt;format month monfmt.;&lt;BR /&gt;class reportablecondition adverse_outcomes month year / preloadfmt;&lt;BR /&gt;table reportablecondition=''*adverse_outcomes='', Year=''*(month='' all)/ printmiss BOX='Adverse Outcomes';&lt;BR /&gt;keylabel N=' ' All='Total';&lt;BR /&gt;footnote1 '2022 is preliminary data';&lt;BR /&gt;footnote2 'Adverse Outcomes includes Syphilis cases where Neuro/Ocular/Otic/Late Clinical Manifestations is indicated as Possible, Likely or Confirmed';&lt;BR /&gt;footnote3 'Clinical Manifestations are not mutually exclusive';&lt;BR /&gt;footnote4 'Excludes Congenital Syphilis cases';&lt;BR /&gt;footnote5 'Data subject to change as additional information is reported';&lt;BR /&gt;footnote6 'Source: Ohio Department of Health, STD Surveillance Programs.';&lt;BR /&gt;footnote7 "STD Surveillance data reported through &amp;amp;edate. ";&lt;BR /&gt;run;&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="mary_mcneill_1-1653687724507.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71832iF0EAD75B20DE70A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mary_mcneill_1-1653687724507.png" alt="mary_mcneill_1-1653687724507.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 21:42:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815507#M321898</guid>
      <dc:creator>mary_mcneill</dc:creator>
      <dc:date>2022-05-27T21:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to align footnote to the left of the table using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815529#M321904</link>
      <description>&lt;P&gt;You mention left justification, but show centred&amp;nbsp;justification?&lt;/P&gt;
&lt;P&gt;In any case, once you write outside of the table, the table's dimensions are not available to align to.&lt;/P&gt;
&lt;P&gt;What you can do is create surrounding divisions to align to. I coloured them so you can see where they lie.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  option nocenter;
 title '&amp;lt;div style="padding: 50px; background-color:red" &amp;gt;Title &amp;lt;div&amp;gt;';
/* title2 '&amp;lt;div style="padding: 50px; background-color:green" &amp;gt; &amp;lt;a /&amp;gt;';*/
proc tabulate data=SASHELP.CLASS;
class AGE; 
table AGE,n;
run;
footnote2 'Adverse Outcomes includes Syphilis cases where Neuro/Ocular/Otic/Late Clinical Manifestations is indicated as Possible, Likely or Confirmed';
footnote3 '&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;';
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisNZ_0-1653732020296.png" style="width: 1413px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71833i23634DD9A1F6847A/image-dimensions/1413x452?v=v2" width="1413" height="452" role="button" title="ChrisNZ_0-1653732020296.png" alt="ChrisNZ_0-1653732020296.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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 May 2022 10:02:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815529#M321904</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2022-05-28T10:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to align footnote to the left of the table using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815532#M321906</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "Syphilis Cases with Adverse Outcomes by Month";
options missing=0;
ods escapechar='~';
proc tabulate data=sashelp.class missing;
class sex age/ preloadfmt;
var weight;
table sex=""*age="", weight/ printmiss BOX="Adverse Outcomes";
footnote1 j=l "%sysfunc(repeat(~_,115))2022 is preliminary data";
footnote2 j=l "%sysfunc(repeat(~_,115))Adverse Outcomes includes Syphilis cases where Neuro/Ocular/Otic/Late Clinical Manifestations is indicated as Possible, Likely or Confirmed";
footnote3 j=l "%sysfunc(repeat(~_,115))Clinical Manifestations are not mutually exclusive";
footnote4 j=l "%sysfunc(repeat(~_,115))Excludes Congenital Syphilis cases";
footnote5 j=l "%sysfunc(repeat(~_,115))Data subject to change as additional information is reported";
footnote6 j=l "%sysfunc(repeat(~_,115))Source: Ohio Department of Health, STD Surveillance Programs.";
footnote7 j=l "%sysfunc(repeat(~_,115))STD Surveillance data reported through edate. ";
run;&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-1653734167822.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71834iBCEF2255A998F7E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1653734167822.png" alt="Ksharp_0-1653734167822.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 May 2022 10:36:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-footnote-to-the-left-of-the-table-using-Proc/m-p/815532#M321906</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-05-28T10:36:11Z</dc:date>
    </item>
  </channel>
</rss>

