<?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 Formatting proc print ods excel footnotes space between table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Formatting-proc-print-ods-excel-footnotes-space-between-table/m-p/796649#M255666</link>
    <description>&lt;PRE&gt;&lt;CODE class=""&gt;ods excel file="\\desktop\sample.xlsx"
style=meadow options(embedded_titles="yes" sheet_interval="none" frozen_headers = '3' sheet_name="Data" EMBEDDED_FOOTNOTES='ON' ABSOLUTE_ROW_HEIGHT=",,,30,30,");
options nobyline;

			proc print data=work.comparison  noobs label;
			var asc /  style(column)={tagattr='format:@' just=c}; 
			var diff1 diff2 diff3  / style={just=c};
			var;

			TITLE1 color=green BOLD "Title";
			FOOTNOTE1 color=black height=1.5 "Prepared by John Smith on &amp;amp;sysdate9.";
			FOOTNOTE2 color=black height=1.5 "Controlled by: Organization";
			FOOTNOTE3 color=black height=1.5 "POC: john.smith@yah.com";
			FOOTNOTE4 color=green BOLD "Title";
			run;
			ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There are additional code above to create the work.comparison data but the focus is in the code above to generate the data table in the excel file, sample.xlsx. Sometimes there may be more rows of data rather than one but for this caser there is one row, row 4 in excel file. For the footnotes, how do I create a space between the table from proc print and footnote. and how do I remove the border lines from the footnotes of rows 5-7. And how do I make the font smaller than the table font size or make the table font size bigger?&lt;/P&gt;</description>
    <pubDate>Wed, 16 Feb 2022 17:49:25 GMT</pubDate>
    <dc:creator>kmin87</dc:creator>
    <dc:date>2022-02-16T17:49:25Z</dc:date>
    <item>
      <title>Formatting proc print ods excel footnotes space between table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-proc-print-ods-excel-footnotes-space-between-table/m-p/796649#M255666</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;ods excel file="\\desktop\sample.xlsx"
style=meadow options(embedded_titles="yes" sheet_interval="none" frozen_headers = '3' sheet_name="Data" EMBEDDED_FOOTNOTES='ON' ABSOLUTE_ROW_HEIGHT=",,,30,30,");
options nobyline;

			proc print data=work.comparison  noobs label;
			var asc /  style(column)={tagattr='format:@' just=c}; 
			var diff1 diff2 diff3  / style={just=c};
			var;

			TITLE1 color=green BOLD "Title";
			FOOTNOTE1 color=black height=1.5 "Prepared by John Smith on &amp;amp;sysdate9.";
			FOOTNOTE2 color=black height=1.5 "Controlled by: Organization";
			FOOTNOTE3 color=black height=1.5 "POC: john.smith@yah.com";
			FOOTNOTE4 color=green BOLD "Title";
			run;
			ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There are additional code above to create the work.comparison data but the focus is in the code above to generate the data table in the excel file, sample.xlsx. Sometimes there may be more rows of data rather than one but for this caser there is one row, row 4 in excel file. For the footnotes, how do I create a space between the table from proc print and footnote. and how do I remove the border lines from the footnotes of rows 5-7. And how do I make the font smaller than the table font size or make the table font size bigger?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 17:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-proc-print-ods-excel-footnotes-space-between-table/m-p/796649#M255666</guid>
      <dc:creator>kmin87</dc:creator>
      <dc:date>2022-02-16T17:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting proc print ods excel footnotes space between table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Formatting-proc-print-ods-excel-footnotes-space-between-table/m-p/796874#M255754</link>
      <description>&lt;P&gt;1. Make your FOOTNOTE1 a blank line to give space between the table and footnotes.&lt;/P&gt;
&lt;P&gt;2. Control the point size of the FOOTNOTE fonts with HIEGHT=xxPT.&lt;/P&gt;
&lt;P&gt;3. Use JOURNAL style first, so the TITTLE and FOOTNOTE lines get created without borders.&lt;/P&gt;
&lt;P&gt;4. Apply your MEADOWS style just before printing the table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nobyline;
ods excel file="C:\temp\sample3.xlsx" 
      &lt;STRONG&gt;style=journal&lt;/STRONG&gt;
      options(embedded_titles="yes" sheet_interval="none" 
      frozen_headers = '3' sheet_name="Data" EMBEDDED_FOOTNOTES='ON' 
      ABSOLUTE_ROW_HEIGHT=",,,30,30,");
TITLE1 color=green BOLD "Title";
&lt;STRONG&gt;FOOTNOTE1 "  ";&lt;/STRONG&gt;
FOOTNOTE2 color=black &lt;STRONG&gt;height=8pt&lt;/STRONG&gt; "Prepared by John Smith on &amp;amp;sysdate9.";
FOOTNOTE3 color=black &lt;STRONG&gt;height=8p&lt;/STRONG&gt;t "Controlled by: Organization";
FOOTNOTE4 color=black &lt;STRONG&gt;height=8pt&lt;/STRONG&gt; "POC: john.smith@yah.com";
FOOTNOTE5 color=green BOLD "Title";

&lt;STRONG&gt;ods excel style=meadow;&lt;/STRONG&gt;
proc print data=sashelp.class(obs=1) noobs label;
   var Name /  style(column)={tagattr='format:@' just=c}; 
   var Age Height Weight / style={just=c};
   var;
run;
ods excel close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And the Excel file, when printed, looks like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASJedi_0-1645105878501.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68581i83E99F7CB0DA73FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASJedi_0-1645105878501.png" alt="SASJedi_0-1645105878501.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>Thu, 17 Feb 2022 13:55:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Formatting-proc-print-ods-excel-footnotes-space-between-table/m-p/796874#M255754</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2022-02-17T13:55:56Z</dc:date>
    </item>
  </channel>
</rss>

