<?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: Proc Report Merge Columns in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890061#M351678</link>
    <description>&lt;P&gt;Thank You&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; the reason why I want to merge 3 columns is what my buisness is expecting they have weird choices but that it is they want the first column to span into 3 columns(A,B,C) and the subsequent column should start from D.&amp;nbsp; If this is not possible in proc report how can we do it in data step? Though I am specifically looking for proc report.&lt;/P&gt;</description>
    <pubDate>Sat, 19 Aug 2023 17:47:39 GMT</pubDate>
    <dc:creator>Ninja_turtle</dc:creator>
    <dc:date>2023-08-19T17:47:39Z</dc:date>
    <item>
      <title>Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/889989#M351644</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to megre column A,B and C to make a single define column in proc report.&lt;/P&gt;&lt;P&gt;Tried to use the tagset but it didn't worked. For example I want the first column to be represented as Single merged column in xml file for A,B and C column and then the next column "Summary" starts from D column.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Manish_Dobriyal_0-1692392468216.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86829iAAC3C41435D4FF5D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Manish_Dobriyal_0-1692392468216.png" alt="Manish_Dobriyal_0-1692392468216.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion how to combine mutiple columns to represent single column value in proc report?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 21:02:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/889989#M351644</guid>
      <dc:creator>Ninja_turtle</dc:creator>
      <dc:date>2023-08-18T21:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890009#M351645</link>
      <description>&lt;OL&gt;
&lt;LI&gt;I see no column A, B, or C.&lt;/LI&gt;
&lt;LI&gt;Please show the code that generated the table you have displayed.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Help us help you.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 22:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890009#M351645</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2023-08-18T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890014#M351646</link>
      <description>&lt;P&gt;Example data&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your Proc report code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A clear description of the output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Personally from that picture I see nothing it would make sense to 'merge columns". You also don't have any column that looks like "Summary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 22:57:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890014#M351646</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-18T22:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890033#M351658</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;input condition $ Today Yesterday Diff;&lt;BR /&gt;datalines;&lt;BR /&gt;AAA 18 17 1&lt;BR /&gt;BBB 3524 3541 -17&lt;BR /&gt;CCC 773 781 -8&lt;BR /&gt;DDD 1721 1721 0&lt;BR /&gt;EEE 26 26 0&lt;BR /&gt;FFF 5 3 2&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods&lt;BR /&gt;PROC REPORT DATA=have;&lt;BR /&gt;COLUMN condition Today Yesterday Diff;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i do a ods for this the conditional column is populated on column A, but i want to merge it like the screesshot below. Where conditional column comes in A,B,C column as one column and gets merged.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Manish_Dobriyal_1-1692424695595.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86834iE5988A04AD4BD764/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Manish_Dobriyal_1-1692424695595.png" alt="Manish_Dobriyal_1-1692424695595.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 05:59:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890033#M351658</guid>
      <dc:creator>Ninja_turtle</dc:creator>
      <dc:date>2023-08-19T05:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890034#M351659</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;input condition $ Today Yesterday Diff;&lt;BR /&gt;datalines;&lt;BR /&gt;AAA 18 17 1&lt;BR /&gt;BBB 3524 3541 -17&lt;BR /&gt;CCC 773 781 -8&lt;BR /&gt;DDD 1721 1721 0&lt;BR /&gt;EEE 26 26 0&lt;BR /&gt;FFF 5 3 2&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods&lt;BR /&gt;PROC REPORT DATA=have;&lt;BR /&gt;COLUMN condition Today Yesterday Diff;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do ods for this the condition column is populated on column A, but I want to merge it like the screenshot below. Where condition column comes in A, B,C columns as one column and gets merged.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Manish_Dobriyal_1-1692424695595.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86834iE5988A04AD4BD764/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Manish_Dobriyal_1-1692424695595.png" alt="Manish_Dobriyal_1-1692424695595.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 06:00:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890034#M351659</guid>
      <dc:creator>Ninja_turtle</dc:creator>
      <dc:date>2023-08-19T06:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890035#M351662</link>
      <description>&lt;P&gt;I think &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp;will have an idea how to achieve this.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 07:07:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890035#M351662</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-08-19T07:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890046#M351669</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data table3way;
  length dmtype durationbi $15;
  infile datalines dlm=',' dsd;
  input dmtype $ ordvar Durationbi $ Num cMean cSTD LowerCL UpperCL Prob_t;
return;
datalines;
"Type 1",1,"&amp;lt;=10 years",17,76.76,17.85,67.59,85.94,0.7243
"Type 1",2,"&amp;gt;10 year",44,75.30,13.06,71.32,79.27,0.7243
"Type 2",1,"&amp;lt;=10 years",47,67.23,22.22,44.44,88.88,0.5584
"Type 2",2,"&amp;gt;10 year",35,69.43,33.33,55.55,99.99,0.5584
;
run;

options orientation=portrait;

ods excel file="c:\temp\spantest.xlsx"   ;

title 'How to span Header Rows amd Data Rpws with RWI and DATA step';
data _null_; 
  set table3way end=last; 
  by dmtype;
  if _N_ = 1 then do; 
      dcl odsout obj(); 
      obj.table_start(); 
      obj.head_start(); 
	  ** Header row 1;
      obj.row_start(type: "Header"); 
      obj.format_cell(text: "Type", row_span:1, column_span: 3, style_attr:"vjust=m color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "Durationbi", style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "num", style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "cmean", style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "cstd", style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "lowercl",style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "uppercl", style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.format_cell(text: "probt",style_attr:"color=black backgroundcolor=cxdddddd fontweight=bold"); 
      obj.row_end(); 
      obj.head_end(); 
    end;
  ** row for every obs;
  ** treat dmtype and prob_t differently so they span rows;

      obj.row_start(); 
      obj.format_cell(data: dmtype,row_span:1, column_span: 3, style_attr:"vjust=m fontweight=bold" ); 
      obj.format_cell(data: Durationbi, row_span:1); 
      obj.format_cell(data: num, row_span:1); 
      obj.format_cell(data: cmean, row_span:1); 
      obj.format_cell(data: cstd, row_span:1); 
      obj.format_cell(data: lowercl, row_span:1); 
      obj.format_cell(data: uppercl, row_span:1); 
      obj.format_cell(data: prob_t, row_span:1, style_attr:"vjust=m fontweight=bold"); 
      obj.row_end(); 
   
  if last then do; 
      obj.table_end(); 
    end; 
run;
footnote;title;
ods excel close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1692442145477.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86838i817E6F08D89B1B67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1692442145477.png" alt="Ksharp_0-1692442145477.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 10:48:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890046#M351669</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-19T10:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890052#M351674</link>
      <description>&lt;P&gt;Thank You for solution, but I am specifically looking for proc report way as i have a very compled xml file being created and want to just do this change&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 14:13:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890052#M351674</guid>
      <dc:creator>Ninja_turtle</dc:creator>
      <dc:date>2023-08-19T14:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890057#M351677</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; for your faith in me. PROC REPORT won't do what this person wants to do and it doesn't make sense. It is possible to make column A wider in Excel and to center the value, in PROC REPORT without spanning the columns as shown. I'll post an example. To really merge the A,B,and C columns horizontally, they would need a DATA step and the Report Writing Interface. But if the goal is to just make the Condition cell wider and centered, that is possible without RWI.&lt;BR /&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an example, just using STYLE overrides, it is possible to alter the appearance of the CONDITION column in Excel without merging cells, as shown below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1692462306492.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86841i65555B084F484E14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1692462306492.png" alt="Cynthia_sas_0-1692462306492.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I don't understand the purpose of merging the 3 columns so this would be my suggested approach. If it is absolutely critical for the 3 columns to be merged horizontally, then the DATA step and RWI approach will be needed.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 16:26:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890057#M351677</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-08-19T16:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890061#M351678</link>
      <description>&lt;P&gt;Thank You&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; the reason why I want to merge 3 columns is what my buisness is expecting they have weird choices but that it is they want the first column to span into 3 columns(A,B,C) and the subsequent column should start from D.&amp;nbsp; If this is not possible in proc report how can we do it in data step? Though I am specifically looking for proc report.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 17:47:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890061#M351678</guid>
      <dc:creator>Ninja_turtle</dc:creator>
      <dc:date>2023-08-19T17:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890076#M351685</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/432529"&gt;@Ninja_turtle&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank You for solution, but I am specifically looking for proc report way as i have a very compled xml file being created and want to just do this change&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Can you explain how Proc Report is the only way that an XML file can be created? I am not seeing any connection.&lt;/P&gt;
&lt;P&gt;If you are using the OUT= option of Proc Report to create a data set for creating an XML then the data set would not have any concept of spanning 3 columns.&lt;/P&gt;
&lt;P&gt;I also have a hard time seeing an XML that is concerned with spanning 3 columns.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2023 23:06:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890076#M351685</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-19T23:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890091#M351693</link>
      <description>I think it is really hard for PROC REPORT to  spanning 3 columns like the picture you posted.&lt;BR /&gt;Anyway, my code is stolen from &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt; , maybe She knew the solution of PROC REPORT.</description>
      <pubDate>Sun, 20 Aug 2023 07:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890091#M351693</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-20T07:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890102#M351701</link>
      <description>Hi,&lt;BR /&gt;  As I already explained in my previous posting, It is NOT possible to do what the original poster asked for with PROC REPORT. The only way is as &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; showed using DATA step and Report Writing Interface. Again, I don't understand the business need for columns A, B and C in Excel to be merged, but PROC REPORT can only merge header cells, not data cells. So you could make A empty, put the CONDITION variable in B and make C empty and then have a header spanning all 3 of those columns, but that is only going to merge the header cells. The data values cells will still remain 3 distinct cells in 3 distinct columns. You can't truly "merge" data cells as you can do in Excel or in the Report Writing Interface.&lt;BR /&gt;  To me, this is the "rock and hard place" point of working with arbitrary cosmetic requirements like this. If the requirement is truly that this must be done with PROC REPORT, then you will need to go back to the requesters and explain that it is not possible, show them the alternative and ask what business purpose the requirement serves. It sounds to me as though they might have some other process that expects the TODAY column to start in Column D. If that is the case, there are a few ways to do THAT with PROC REPORT, but merging the first 3 columns with PROC REPORT isn't one of the ways.&lt;BR /&gt;Cynthia</description>
      <pubDate>Sun, 20 Aug 2023 13:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/890102#M351701</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-08-20T13:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/891236#M352098</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; &amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/432529"&gt;@Ninja_turtle&lt;/a&gt;&amp;nbsp; &amp;nbsp;，&lt;/P&gt;
&lt;P&gt;I found the solution of PROC REPORT, Check it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file='c:\temp\temp.xlsx';
proc report data=sashelp.class nowd;
define name/style(header column)={tagattr='mergeacross:3'};
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="sas-author-username"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1693132362220.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87204iF5BC70D38C21CD3C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1693132362220.png" alt="Ksharp_0-1693132362220.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 27 Aug 2023 10:32:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/891236#M352098</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-27T10:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report Merge Columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/891410#M352155</link>
      <description>That's cool! I did not realize that mergeacross would work on Data cells as well as Header cells. That's really using an EXCEL format/style as a TAGATTR style override for ODS, which would only work for an ODS EXCEL file. Would not work for PDF or RTF or other destinations.&lt;BR /&gt;Cynthia</description>
      <pubDate>Tue, 29 Aug 2023 01:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Merge-Columns/m-p/891410#M352155</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-08-29T01:11:06Z</dc:date>
    </item>
  </channel>
</rss>

