<?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 PROC REPORT lines not displaying properly in RTF in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-lines-not-displaying-properly-in-RTF/m-p/852708#M337052</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=table nowd headline headskip missing split="*" formchar="|----|+|---+=|-/\&amp;lt;&amp;gt;*" style=monospace  
out=&amp;amp;ov_out.(where=(_break_=""))
style(report)=[outputwidth=101%]
style(header)=[just=l asis=on ]
style(column)=[just=l asis=on ];
	columns pg aperiod visitnum paramn roword cat0 stat_c1-stat_c4;
	define pg / order order=internal noprint;
	define aperiod / order order=internal noprint;
	define visitnum / order order=internal noprint;
	define paramn / order order=internal noprint;
	define roword / order order=internal noprint;
	define cat0 / "Period*  Visit*   Measurement/Lab Test (Units)" flow style(column)=[just=left cellwidth = 15.1%];
	define stat_c1 / "* TRT A* N=&amp;amp;n1" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c2 / "* TRT B* N=&amp;amp;n2" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c3 / "* TRT C* N=&amp;amp;n3" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c4 / "* TOTAL* N=&amp;amp;n4" flow style(column)=[just=left cellwidth = 6.1%];
	break after pg / page;
	compute before / style={just=l}; line "&amp;amp;headline"; endcomp;
    compute before _page_/ style={just=l}; line "&amp;amp;headline"; line ""; endcomp;       
    compute after _page_ / style={just=l borderbottomcolor=white}; line "&amp;amp;headline"; endcomp;  
	compute after paramn / style={just=l borderbottomcolor=white}; line ""; endcomp;
	compute before pg / style={just=l borderbottomcolor=white}; line ""; endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi, I need lines under column headers and at the bottom of the table. The lines are displaying but not properly. Line spills onto the next line. I am using a macro variable and compute blocks to get the lines. Macro variable is %let headline = %sysfunc(repeat('_',&amp;amp;ls-2)). &amp;amp;ls is another macro variable for line size and is currently set at 133 from what I can tell. If anyone has a better way to get the lines, please let me know. I already have headline and headskip options on proc report and a paging variable called pg. I have break after pg / page.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tarheel13_0-1673206099838.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79160i70A2FC3AA0888D65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tarheel13_0-1673206099838.png" alt="tarheel13_0-1673206099838.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like the yellow to go away. Same is happening for line under the table.&lt;/P&gt;</description>
    <pubDate>Sun, 08 Jan 2023 19:30:35 GMT</pubDate>
    <dc:creator>tarheel13</dc:creator>
    <dc:date>2023-01-08T19:30:35Z</dc:date>
    <item>
      <title>PROC REPORT lines not displaying properly in RTF</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-lines-not-displaying-properly-in-RTF/m-p/852708#M337052</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=table nowd headline headskip missing split="*" formchar="|----|+|---+=|-/\&amp;lt;&amp;gt;*" style=monospace  
out=&amp;amp;ov_out.(where=(_break_=""))
style(report)=[outputwidth=101%]
style(header)=[just=l asis=on ]
style(column)=[just=l asis=on ];
	columns pg aperiod visitnum paramn roword cat0 stat_c1-stat_c4;
	define pg / order order=internal noprint;
	define aperiod / order order=internal noprint;
	define visitnum / order order=internal noprint;
	define paramn / order order=internal noprint;
	define roword / order order=internal noprint;
	define cat0 / "Period*  Visit*   Measurement/Lab Test (Units)" flow style(column)=[just=left cellwidth = 15.1%];
	define stat_c1 / "* TRT A* N=&amp;amp;n1" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c2 / "* TRT B* N=&amp;amp;n2" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c3 / "* TRT C* N=&amp;amp;n3" flow style(column)=[just=left cellwidth = 6.1%];
	define stat_c4 / "* TOTAL* N=&amp;amp;n4" flow style(column)=[just=left cellwidth = 6.1%];
	break after pg / page;
	compute before / style={just=l}; line "&amp;amp;headline"; endcomp;
    compute before _page_/ style={just=l}; line "&amp;amp;headline"; line ""; endcomp;       
    compute after _page_ / style={just=l borderbottomcolor=white}; line "&amp;amp;headline"; endcomp;  
	compute after paramn / style={just=l borderbottomcolor=white}; line ""; endcomp;
	compute before pg / style={just=l borderbottomcolor=white}; line ""; endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi, I need lines under column headers and at the bottom of the table. The lines are displaying but not properly. Line spills onto the next line. I am using a macro variable and compute blocks to get the lines. Macro variable is %let headline = %sysfunc(repeat('_',&amp;amp;ls-2)). &amp;amp;ls is another macro variable for line size and is currently set at 133 from what I can tell. If anyone has a better way to get the lines, please let me know. I already have headline and headskip options on proc report and a paging variable called pg. I have break after pg / page.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tarheel13_0-1673206099838.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/79160i70A2FC3AA0888D65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tarheel13_0-1673206099838.png" alt="tarheel13_0-1673206099838.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like the yellow to go away. Same is happening for line under the table.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2023 19:30:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-lines-not-displaying-properly-in-RTF/m-p/852708#M337052</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2023-01-08T19:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT lines not displaying properly in RTF</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-lines-not-displaying-properly-in-RTF/m-p/852711#M337053</link>
      <description>&lt;P&gt;Okay, I think I fixed it by using these macro variables instead of &amp;amp;headline.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  %let bb=\brdrb\brdrs\brdrw10;
  %let tb=\brdrt\brdrs\brdrw10;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 08 Jan 2023 19:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-REPORT-lines-not-displaying-properly-in-RTF/m-p/852711#M337053</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2023-01-08T19:42:32Z</dc:date>
    </item>
  </channel>
</rss>

