<?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 i can remove the border lines generated by cross tab(by grouped &amp;amp; across col) from proc in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/324955#M17732</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The major difference between TABULATE and REPORT is the TABULATE BOX area that separates the column dimension headers from the row dimension headers. The screen shot you attached looks like TABULATE output. When you run your PROC REPORT code, the borderlines, as you call them, are evident as shown here:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6738i2775015C55F854D4/image-size/original?v=v2&amp;amp;px=-1" alt="PROC_REPORT_DEFAULT_HEADERS.png" title="PROC_REPORT_DEFAULT_HEADERS.png" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...because PROC REPORT does not treat the area above REGION or SUBSIDIARY columns in a way that is "different" from the other headers. The fact that you have nested ACROSS items means that part of your header area needs 3 header rows for all the header cells. That will automatically put 2 blank rows above REGION and SUBSIDIARY variables. You might be able to get rid of the borders above ALL the header cells and ALL the data cells by changing the style(report) or changing the style template, or there might be a CSS way to do it. But if you want the TABULATE box area, then it would be better to use TABULATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
    <pubDate>Mon, 16 Jan 2017 03:35:12 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2017-01-16T03:35:12Z</dc:date>
    <item>
      <title>How i can remove the border lines generated by cross tab(by grouped &amp; across col) from proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/324901#M17731</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;I want to remove the border line above the column (Region and Subsidiary) using Proc report without proc tabulate.&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6727i23E94169580702A5/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="report.png" title="report.png" /&gt;&lt;BR /&gt;ods html file='c:\temp\spanrows_behavior.html' style=sasweb;
 
proc report data=sashelp.shoes nowd SPANROWS;
title 'REPORT Output with SPANROWS';
  column region subsidiary product,(sales sales=savg);
  define region / group 
         style(column)=Header;
  define subsidiary / group
         style(column)=Header;
  define product / across 'Product Sales';
  define sales / sum 'Sum' f=dollar10.;
  define savg / mean 'Mean' f=dollar10.;
  rbreak after / summarize style=Header;
run;
 
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13331i03260BB18CEA7196/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="output.png" title="output.png" /&gt;</description>
      <pubDate>Sun, 15 Jan 2017 19:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/324901#M17731</guid>
      <dc:creator>ramanuj</dc:creator>
      <dc:date>2017-01-15T19:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: How i can remove the border lines generated by cross tab(by grouped &amp; across col) from proc</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/324955#M17732</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The major difference between TABULATE and REPORT is the TABULATE BOX area that separates the column dimension headers from the row dimension headers. The screen shot you attached looks like TABULATE output. When you run your PROC REPORT code, the borderlines, as you call them, are evident as shown here:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6738i2775015C55F854D4/image-size/original?v=v2&amp;amp;px=-1" alt="PROC_REPORT_DEFAULT_HEADERS.png" title="PROC_REPORT_DEFAULT_HEADERS.png" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...because PROC REPORT does not treat the area above REGION or SUBSIDIARY columns in a way that is "different" from the other headers. The fact that you have nested ACROSS items means that part of your header area needs 3 header rows for all the header cells. That will automatically put 2 blank rows above REGION and SUBSIDIARY variables. You might be able to get rid of the borders above ALL the header cells and ALL the data cells by changing the style(report) or changing the style template, or there might be a CSS way to do it. But if you want the TABULATE box area, then it would be better to use TABULATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2017 03:35:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/324955#M17732</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-01-16T03:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: How i can remove the border lines generated by cross tab(by grouped &amp; across col) from proc</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/325057#M17734</link>
      <description>&lt;P&gt;Thanks Cyntia,&lt;/P&gt;&lt;P&gt;Actually i have 4 level of across dimension and it is showing 4 blank above the grouped variables.I tried alot to remove those by proc report but unfortunately didn't happen.Yes from style we can hide those.Just wanted to confirm if that can be done from Proc report and now it is cleared.With proc tabulate the output is perfect.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2017 16:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-i-can-remove-the-border-lines-generated-by-cross-tab-by/m-p/325057#M17734</guid>
      <dc:creator>ramanuj</dc:creator>
      <dc:date>2017-01-16T16:13:20Z</dc:date>
    </item>
  </channel>
</rss>

