<?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: don't merge empty cells when title of proc report &amp;amp; ods excel (insert break/boundary) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807970#M25712</link>
    <description>&lt;P&gt;I solve it with split.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc report data=d_out(obs=3)
 split="#"
 out = _O_REP
;
    column 
  ("1" ("A" ("" ("" col1))))
  ("2" ("B" ("" ("" col2))))
  ("3" ("C" ("" ("" col3))))
  ("4" ("D" ("" ("" col4))))   
   age
    ;
    define col1 / display "#";
    define col2 / display "#";
    define col3 / display "#";
    define col4 / display "";
    
    define age / display;
    
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 15 Apr 2022 09:27:14 GMT</pubDate>
    <dc:creator>t_ar_taat</dc:creator>
    <dc:date>2022-04-15T09:27:14Z</dc:date>
    <item>
      <title>don't merge empty cells when title of proc report &amp; ods excel (insert break/boundary)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807964#M25710</link>
      <description>&lt;P&gt;When I use ods excel &amp;amp; proc report, cells of sequentialley empty in title is united.&lt;/P&gt;&lt;P&gt;I want to avoid this 3rd line in title.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="before-bad.jpg" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/70417i5E10199BE2A8EB42/image-size/small?v=v2&amp;amp;px=200" role="button" title="before-bad.jpg" alt="before-bad.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data d_out;
 set sashelp.class;
 attrib col1 - col4 length = $20;
 call missing(of col1 - col4);
run;

ods excel file= "D:\test.xlsx";
proc report data=d_out(obs=3)
 split="#"
 out = _O_REP
;
    column 
  ("1" ("A" ("" ("" col1))))
  ("2" ("B" ("" ("" col2))))
  ("3" ("C" ("" ("" col3))))
  ("4" ("D" ("" ("" col4))))   
   age
    ;
    define col1 / display "";
    define col2 / display "";
    define col3 / display "";
    define col4 / display "";
   
    define age / display;
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I want to insert break/boundary like this. (insert blank as dummy is also OK.)&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="after.jpg" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/70416iF4B444CFFA4D8F2B/image-size/small?v=v2&amp;amp;px=200" role="button" title="after.jpg" alt="after.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Related QA = using across which I don' t use.&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Create-Border-and-Title-should-be-in-side-Border/td-p/562009" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Create-Border-and-Title-should-be-in-side-Border/td-p/562009&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 08:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807964#M25710</guid>
      <dc:creator>t_ar_taat</dc:creator>
      <dc:date>2022-04-15T08:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: don't merge empty cells when title of proc report &amp; ods excel (insert break/boundary)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807969#M25711</link>
      <description>This doesn't work.&lt;BR /&gt;define col2 / display "" style(column)=[ tagattr="merge:no"];</description>
      <pubDate>Fri, 15 Apr 2022 09:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807969#M25711</guid>
      <dc:creator>t_ar_taat</dc:creator>
      <dc:date>2022-04-15T09:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: don't merge empty cells when title of proc report &amp; ods excel (insert break/boundary)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807970#M25712</link>
      <description>&lt;P&gt;I solve it with split.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc report data=d_out(obs=3)
 split="#"
 out = _O_REP
;
    column 
  ("1" ("A" ("" ("" col1))))
  ("2" ("B" ("" ("" col2))))
  ("3" ("C" ("" ("" col3))))
  ("4" ("D" ("" ("" col4))))   
   age
    ;
    define col1 / display "#";
    define col2 / display "#";
    define col3 / display "#";
    define col4 / display "";
    
    define age / display;
    
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Apr 2022 09:27:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/don-t-merge-empty-cells-when-title-of-proc-report-amp-ods-excel/m-p/807970#M25712</guid>
      <dc:creator>t_ar_taat</dc:creator>
      <dc:date>2022-04-15T09:27:14Z</dc:date>
    </item>
  </channel>
</rss>

