<?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: ODS Excel (xlsx) Issue with borders in title (bug?) in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315949#M17414</link>
    <description>&lt;P&gt;SAS Enterprise Guide: 7.11 HF5 (7.100.1.2856) (32-Bit)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS Server: 9.04.01&amp;nbsp; / Linux&lt;/P&gt;</description>
    <pubDate>Thu, 01 Dec 2016 14:16:52 GMT</pubDate>
    <dc:creator>optimus</dc:creator>
    <dc:date>2016-12-01T14:16:52Z</dc:date>
    <item>
      <title>ODS Excel (xlsx) Issue with borders in title (bug?)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315926#M17412</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In ODS Excel the borders of the title are not displayed properly across the entire merged cells:&lt;/P&gt;&lt;P&gt;&lt;IMG title="ods_excel.PNG" alt="ods_excel.PNG" src="https://communities.sas.com/t5/image/serverpage/image-id/6171i5FC0B5699991FA96/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In ODS Tagset.ExcelXP it works without problems:&lt;IMG title="ods_tagset.PNG" alt="ods_tagset.PNG" src="https://communities.sas.com/t5/image/serverpage/image-id/6172iD3FFAC7AD20FAAEB/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sample Code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
	define style title_test;
		parent=styles.HTMLBlue;
		class SystemTitle /
			background=pink 
			bordercolor = black
			borderstyle = solid 
			borderbottomcolor=aquamarine 
			borderbottomwidth=4
		;
	end;
run;

ods tagsets.excelxp(i) file="test_tagset_excelxp.xls" 
	style=title_test
options(
		sheet_interval = 'none'
		sheet_name='test'
		sheet_label = ' '
		embedded_titles = 'yes'
		suppress_bylines = 'yes'
		Merge_Titles_Footnotes='yes'
	);

title "Title in ODS Tagset ExcelXP Output";

proc print data=sashelp.cars(obs= 20); run;

ods _all_ close;

ods excel file='test_ods_excel.xlsx'
	style=title_test
	options(
		sheet_interval = 'none'
		sheet_name='test'
		sheet_label = ' '
		embedded_titles = 'yes'
		suppress_bylines = 'yes'
	);
ods escapechar='^';

title1 "Title in ODS Excel Output";

proc print data=sashelp.cars(obs= 20); run;

ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why? Is this a known issue? Any solutions?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 13:19:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315926#M17412</guid>
      <dc:creator>optimus</dc:creator>
      <dc:date>2016-12-01T13:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel (xlsx) Issue with borders in title (bug?)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315933#M17413</link>
      <description>&lt;P&gt;What is your SAS version?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 13:37:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315933#M17413</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-12-01T13:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel (xlsx) Issue with borders in title (bug?)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315949#M17414</link>
      <description>&lt;P&gt;SAS Enterprise Guide: 7.11 HF5 (7.100.1.2856) (32-Bit)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS Server: 9.04.01&amp;nbsp; / Linux&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2016 14:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/315949#M17414</guid>
      <dc:creator>optimus</dc:creator>
      <dc:date>2016-12-01T14:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel (xlsx) Issue with borders in title (bug?)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/316027#M17420</link>
      <description>Since you have code that produces different results for each destination, this is the kind of issue you should report to Tech Support -- they can tell you whether this is a known issue or refer the question to the developers.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Thu, 01 Dec 2016 18:14:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/316027#M17420</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-12-01T18:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel (xlsx) Issue with borders in title (bug?)</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/316805#M17443</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Posting an updated example. From SAS Tech Support, there is a known defect about this behavior. The workaround is shown below, in a STYLE template change.&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6228i68704E747236D357/image-size/original?v=v2&amp;amp;px=-1" alt="workaround_title_border_ods_excel.png" title="workaround_title_border_ods_excel.png" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2016 18:24:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-xlsx-Issue-with-borders-in-title-bug/m-p/316805#M17443</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-12-05T18:24:22Z</dc:date>
    </item>
  </channel>
</rss>

