<?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: Making header border lines invisible/white in selective columns with PROC REPORT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926266#M364512</link>
    <description>&lt;P&gt;Thanks for the suggestion. yeah I tried this but no luck unfortunately&lt;/P&gt;</description>
    <pubDate>Mon, 29 Apr 2024 09:16:01 GMT</pubDate>
    <dc:creator>smackerz1988</dc:creator>
    <dc:date>2024-04-29T09:16:01Z</dc:date>
    <item>
      <title>Making header border lines invisible/white in selective columns with PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926219#M364494</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm creating an output that requires this header layout&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="smackerz1988_1-1714045922018.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95851i5B9146D7E42375A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="smackerz1988_1-1714045922018.png" alt="smackerz1988_1-1714045922018.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I'm using this code&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=final out=view missing nowindows split="*" contents=" ";
   column pag ("MedDRA System Organ Class /* Preferred Term" (" " aesoc))    
    ("trt (N=&amp;amp;trt_count.)" ("arm1*(N=&amp;amp;arm1_count.)" ('Subjects with TEAE*n (%)' arm1))
    ("arm2*(N=&amp;amp;arm2_count.)" ('Subjects with TEAE*n (%)' arm2)))
    ord;
   define pag / order  order = internal noprint ;
   define aesoc  / display " " left flow style(header)=[just=l] STYLE(column)=[&amp;amp;col_style asis=on cellwidth=12.00cm];
   define ord / order order =  internal noprint;   
   define arm2 / " " display   center flow STYLE(column)=[&amp;amp;col_style cellwidth=7.00cm];
   define arm1 / " " display center   flow STYLE(column)=[&amp;amp;col_style cellwidth=7.00cm];
   

    compute after pag / style ={&amp;amp;line_small};
        line "";
    endcomp;

    break after pag / page;

compute before _page_ / left style={&amp;amp;tit_style};
   line "Table 1.4.3 Severe treatment-emergent adverse events by System Organ Class and Preferred Term with incidence of &amp;gt;=5% in at least one arm - Separately by TPC regimen - Safety Analysis Set";   
endcomp;

	compute before ord / style ={&amp;amp;line_small};
		line "";		
	endcomp;

 compute after _page_ / left style={&amp;amp;foot_style};
   line "Notes: NE: Not evaluable; SOC: System Organ Class; PT: Preferred Term; TEAE: Treatment-emergent adverse event. Adverse events were coded using the MedDRA dictionary, Version 26.1 and graded according to NCI CTCAE v5.0.";   
endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However this is my ouput&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="smackerz1988_0-1714317401092.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95981i683CA4BE3A0181DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="smackerz1988_0-1714317401092.png" alt="smackerz1988_0-1714317401092.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;How am I able to make this border line for this column either not visibly or removed?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Apr 2024 15:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926219#M364494</guid>
      <dc:creator>smackerz1988</dc:creator>
      <dc:date>2024-04-28T15:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Making header border lines invisible/white in selective columns with PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926246#M364499</link>
      <description>Did you try :&lt;BR /&gt;("MedDRA System Organ Class /* Preferred Term" (" " aesoc))    &lt;BR /&gt;--&amp;gt;&lt;BR /&gt;( "09"x     ("MedDRA System Organ Class /* Preferred Term" ("09"x aesoc))     )</description>
      <pubDate>Mon, 29 Apr 2024 02:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926246#M364499</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-04-29T02:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Making header border lines invisible/white in selective columns with PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926266#M364512</link>
      <description>&lt;P&gt;Thanks for the suggestion. yeah I tried this but no luck unfortunately&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 09:16:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Making-header-border-lines-invisible-white-in-selective-columns/m-p/926266#M364512</guid>
      <dc:creator>smackerz1988</dc:creator>
      <dc:date>2024-04-29T09:16:01Z</dc:date>
    </item>
  </channel>
</rss>

