<?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 Spacing between multiple proc reports - ODS HTML in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646019#M193197</link>
    <description>&lt;P&gt;ODS HTML: I want to build a table look (no spaces between rows) out of multiple proc reports.&amp;nbsp; However, it inserts a space between the output tables.&amp;nbsp; How do I minimize or remove the space between the output tables? The data is different data types so I can't just append into one table. TIA!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=work.pct_remain_2 nowd missing noheader
style(header) = {font_face="calibri" font_size=10pt bordercolor=black background=orange foreground=white }
style(column)={background=white font_face="calibri" font_size=10pt }
;
columns (Label MIN_ CYC DAYS DATE);
define Label / ' ' style(column)=[cellwidth=1.5in] left;
define MIN_ / ' ' style(column)=[cellwidth=1.5in]center;
define CYC / ' ' style(column)=[cellwidth=1.5in] center ;
define DAYS / ' ' style(column)=[cellwidth=1.5in]center ;
define DATE / ' ' style(column)=[cellwidth=1.5in] center;
run;

proc report data=work.test_2 nowd missing noheader
style(header) = {font_face="calibri" font_size=10pt bordercolor=black background=orange foreground=white }
style(column)={background=white font_face="calibri" font_size=10pt }
;
columns (Label MIN_ CYC DAYS DATE);
define Label / ' ' style(column)=[cellwidth=1.5in] left;
define MIN_ / ' ' style(column)=[cellwidth=1.5in]center;
define CYC / ' ' style(column)=[cellwidth=1.5in] center ;
define DAYS / ' ' style(column)=[cellwidth=1.5in]center ;
define DATE / ' ' style(column)=[cellwidth=1.5in] center;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 May 2020 19:52:18 GMT</pubDate>
    <dc:creator>CLE</dc:creator>
    <dc:date>2020-05-07T19:52:18Z</dc:date>
    <item>
      <title>Spacing between multiple proc reports - ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646019#M193197</link>
      <description>&lt;P&gt;ODS HTML: I want to build a table look (no spaces between rows) out of multiple proc reports.&amp;nbsp; However, it inserts a space between the output tables.&amp;nbsp; How do I minimize or remove the space between the output tables? The data is different data types so I can't just append into one table. TIA!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=work.pct_remain_2 nowd missing noheader
style(header) = {font_face="calibri" font_size=10pt bordercolor=black background=orange foreground=white }
style(column)={background=white font_face="calibri" font_size=10pt }
;
columns (Label MIN_ CYC DAYS DATE);
define Label / ' ' style(column)=[cellwidth=1.5in] left;
define MIN_ / ' ' style(column)=[cellwidth=1.5in]center;
define CYC / ' ' style(column)=[cellwidth=1.5in] center ;
define DAYS / ' ' style(column)=[cellwidth=1.5in]center ;
define DATE / ' ' style(column)=[cellwidth=1.5in] center;
run;

proc report data=work.test_2 nowd missing noheader
style(header) = {font_face="calibri" font_size=10pt bordercolor=black background=orange foreground=white }
style(column)={background=white font_face="calibri" font_size=10pt }
;
columns (Label MIN_ CYC DAYS DATE);
define Label / ' ' style(column)=[cellwidth=1.5in] left;
define MIN_ / ' ' style(column)=[cellwidth=1.5in]center;
define CYC / ' ' style(column)=[cellwidth=1.5in] center ;
define DAYS / ' ' style(column)=[cellwidth=1.5in]center ;
define DATE / ' ' style(column)=[cellwidth=1.5in] center;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 May 2020 19:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646019#M193197</guid>
      <dc:creator>CLE</dc:creator>
      <dc:date>2020-05-07T19:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Spacing between multiple proc reports - ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646024#M193198</link>
      <description>&lt;P&gt;Since your code shows the same variables the question does arise why are the variables of different types?&lt;/P&gt;
&lt;P&gt;Perhaps addressing that issue will save a lot of work going forward.&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2020 20:08:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646024#M193198</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-07T20:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Spacing between multiple proc reports - ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646125#M193242</link>
      <description>&lt;P&gt;Hide the bottom border of the top table and top border of the bottom table.&amp;nbsp; Reduce the line-height of the omnipresent table separator &amp;lt;br/&amp;gt; to 0.&lt;/P&gt;
&lt;PRE&gt;data sna;
input A $ B C D E;
datalines;
ABC 1 2 3 4
DEF 5 6 7 8
GHI 9 10 11 12
;
data foo;
input A $ B $ C $ D E;
datalines;
ABC 1 2 3 4
DEF 5 6 7 8
GHI 9 10 11 12
;

ods html file='report.html' style=plateau
  headtext = "&amp;lt;style&amp;gt;br { line-height:0 }&amp;lt;/style&amp;gt;"
;

title "Tricked! Two tables as one";

proc report data=sna missing noheader
  style(report) = { borderbottomwidth=0 }
;
columns (A B C D E);
define A / style(column)=[cellwidth=1.5in] left;
define B / style(column)=[cellwidth=1.5in] center;
define C / style(column)=[cellwidth=1.5in] center ;
define D / style(column)=[cellwidth=1.5in] center ;
define E / style(column)=[cellwidth=1.5in] center;
run;

title;

proc report data=foo missing noheader
  style(report) = { bordertopwidth = 0 }
;
columns (A B C D E);
define A / style(column)=[cellwidth=1.5in] left;
define B / style(column)=[cellwidth=1.5in] center;
define C / style(column)=[cellwidth=1.5in] center ;
define D / style(column)=[cellwidth=1.5in] center ;
define E / style(column)=[cellwidth=1.5in] center;
run;

ods _all_ close;
&lt;/PRE&gt;
&lt;P&gt;Output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardADeVenezia_0-1588923713388.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39201i83C4030DF0662607/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardADeVenezia_0-1588923713388.png" alt="RichardADeVenezia_0-1588923713388.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 07:42:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646125#M193242</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-05-08T07:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Spacing between multiple proc reports - ODS HTML</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646211#M193266</link>
      <description>&lt;P&gt;Thank you very much for you time! It saved me a lot of struggling to figure that out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 13:46:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spacing-between-multiple-proc-reports-ODS-HTML/m-p/646211#M193266</guid>
      <dc:creator>CLE</dc:creator>
      <dc:date>2020-05-08T13:46:03Z</dc:date>
    </item>
  </channel>
</rss>

