<?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: Issue with Titles in Excel in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77318#M8781</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; As I explained, Excel is messing up the color rendering. SAS is sending the color code. Excel is rendering it incorrectly. I suspect, but it's only a hunch, that somehow Excel is interpreting the colors wrong. I don't know anything to do about it except find a different shade of gray. For example, if I use cx686868 as the color to send, Excel seems to not tamper with the color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; As for the title, when I use an ABSOLUTE_COLUMN_WIDTH="15,10", I did not get any title truncation. See my screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I'd recommend that you open a track with Tech Support on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11935iC2FC8EBB791AB16D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="no_trunc_15_10.png" title="no_trunc_15_10.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11936i9C421252A8C3FAC6/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="use_cx686868.png" title="use_cx686868.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Nov 2012 23:01:30 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2012-11-29T23:01:30Z</dc:date>
    <item>
      <title>Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77311#M8774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue with titles in the report getting truncated when using ODS Tagsets.ExcelXP . when i reduce the table column width the titles are getting overrided to this width, but i want to display the titles irrespective of the report column width. can anyone suggest on this and even the data color is getting overrided to blue color which i have not given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please look into the sample code below and suggest on this&lt;/P&gt;&lt;P&gt;title;&lt;/P&gt;&lt;P&gt;footnote;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods escapechar="^";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;file="/location/myfile.xls"&lt;/P&gt;&lt;P&gt;style=BarrettsBlue&lt;/P&gt;&lt;P&gt;OPTIONS ( Sheet_Name = 'Program'&lt;/P&gt;&lt;P&gt;Sheet_Interval = 'proc'&lt;/P&gt;&lt;P&gt;Orientation = 'portrait'&lt;/P&gt;&lt;P&gt;FitToPage = 'yes'&lt;/P&gt;&lt;P&gt;Pages_FitWidth = '1'&lt;/P&gt;&lt;P&gt;Pages_FitHeight = '100'&lt;/P&gt;&lt;P&gt;Center_Horizontal = 'yes'&lt;/P&gt;&lt;P&gt;Embedded_Titles = 'yes'&lt;/P&gt;&lt;P&gt;Embedded_Footnotes = 'yes'&lt;/P&gt;&lt;P&gt;Absolute_Column_Width = '30,25'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;); &lt;/P&gt;&lt;P&gt;/*&amp;nbsp; title1*/&lt;/P&gt;&lt;P&gt;&amp;nbsp; title1 j=left bold font=arial bc=cxffffff color=cx685c53 h=18pt "XYZ Corporation INDIA Pvt ltd (Monthly Standard report)";&lt;/P&gt;&lt;P&gt;&amp;nbsp; title2 j=left bold&amp;nbsp; font=arial bc=cxffffff&amp;nbsp; color=cx685c53 h=10pt "Monthly Program&amp;nbsp; Report";&lt;/P&gt;&lt;P&gt;&amp;nbsp; title3 j=left font=arial bc=cxffffff&amp;nbsp; color=cx685c53 h=10pt "Activity From: &amp;amp;startDatePrvYr through &amp;amp;endDatePrvYr";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=final&lt;/P&gt;&lt;P&gt; style(report) = [just=left backgroundcolor=cxffffff BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white BORDERCOLOR=white&amp;nbsp; font = (Arial,10pt)] split= "*" &lt;/P&gt;&lt;P&gt; style(header)=[just=left BACKGROUND =cx685c53 BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white foreground=white BORDERCOLOR=white font = (Arial,10pt) font_weight = bold]&lt;/P&gt;&lt;P&gt; style(column)=[BORDERRIGHTCOLOR=white foreground=cx685c53 BORDERTOPCOLOR=white BORDERCOLOR=white font = (Arial,10pt)];&lt;/P&gt;&lt;P&gt;&amp;nbsp; column program Count ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define program / display&amp;nbsp; "Program" style(column)=[ indent=4 tagattr="format:@" just=center background=cxffffff foreground=cx685c53] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)=[just=left indent=2 ];&lt;/P&gt;&lt;P&gt;&amp;nbsp; define Count&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / analysis "Count"&amp;nbsp; style(column)=[ just=center background=cxffffff foreground=cx685c53] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)=[just=left indent=2 ];&lt;/P&gt;&lt;P&gt;&amp;nbsp; rbreak after&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / summarize ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; compute after;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; program='Total';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; call define(_row_,'style',"style=[font_weight=bold]");&lt;/P&gt;&lt;P&gt;&amp;nbsp; endcomp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;P&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background: none repeat scroll 0% 0% white;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;here title1 is getting truncated to the column width 15&amp;nbsp; as given in absolute column width, but i want to remain the same width for column and titles should display as they are. And the color for data i given as "cx685c53", but its getting overrided by blue color.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 09:43:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77311#M8774</guid>
      <dc:creator>Vish33</dc:creator>
      <dc:date>2012-11-22T09:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77312#M8775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; See the attached screenshot. In SAS 9.3, with Excel 2010 opening the file, I don't have an issue with the TITLE width using my version of SAS to create the XML and Excel 2010 to render the XML into spreadsheet form. The title seems OK to me -- no truncation. I am running the version&amp;nbsp; v1.127, 09/26/2011 of TAGSETS.EXCELXP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I do see a color difference. I have come to expect that with Excel. If it doesn't like a color that you've specified, it will map the color to something else. It was worse before 2010, when Excel only had a color palette of 56 colors. But I notice that it still happens. If you look inside the generated XML with Notepad or TextPad, you can verify that SAS sent the hex code color CX685c53. But SAS is not&amp;nbsp; rendering the color. SAS is sending the color to Excel. Excel is responsible for rendering the color.&amp;nbsp; I've attached a screen shot of the title color in Excel and you can see that Excel did not map that hex color correctly. I looked in the XML and SAS sent "685c53" for the title color. So, Excel is being obstinate, here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I would recommend that you play around with shades of gray until you find one that Excel will render accurately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you continue to have issues with this, then I would recommend that you open a ticket with Tech Support. First, I'd double check your version of TAGSETS.EXCELXP and make sure that you are using the most recent version of the destination tagset template.&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/32/394.html"&gt;http://support.sas.com/kb/32/394.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11879iBABD57CB41C22DB1/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="titles_excelxp.png" title="titles_excelxp.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11880i1099608BC7C29868/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="html_color_685c53.png" title="html_color_685c53.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11881i8741D0701C201F89/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="color_excel.png" title="color_excel.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 16:34:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77312#M8775</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-22T16:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77313#M8776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="63295" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: Would you mind posting the code that you ran?&amp;nbsp; I had attempted the same test, on 9.3, but ended up with an xml file that Excel couldn't read.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 16:41:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77313#M8776</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-22T16:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77314#M8777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi, Art:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sure, here it is. I made some data from SASHELP.CLASS and tidied up the code indent levels. The only thing I really changed was that I hardcoded dates instead of macro variables in TITLE3 and I changed the FILE= location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;footnote;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods escapechar="^";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data final;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; set sashelp.class;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; where age le 13;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; program = name;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; count=age;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; file="c:\temp\myfile.xls"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; style=BarrettsBlue&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; OPTIONS ( Sheet_Name = 'Program'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet_Interval = 'proc'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Orientation = 'portrait'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FitToPage = 'yes'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pages_FitWidth = '1'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pages_FitHeight = '100'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Center_Horizontal = 'yes'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Embedded_Titles = 'yes'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Embedded_Footnotes = 'yes'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Absolute_Column_Width = '30,25');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title1 j=left bold font=arial bc=cxffffff color=cx685c53 h=18pt &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;"XYZ Corporation INDIA Pvt ltd (Monthly Standard report)";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title2 j=left bold&amp;nbsp; font=arial bc=cxffffff&amp;nbsp; color=cx685c53 h=10pt &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;"Monthly Program&amp;nbsp; Report";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title3 j=left font=arial bc=cxffffff&amp;nbsp; color=cx685c53 h=10pt &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;"Activity From: 2011 through 2012";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=final nowd split= "*"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; style(report) = [just=left backgroundcolor=cxffffff &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BORDERCOLOR=white&amp;nbsp; font = (Arial,10pt)]&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; style(header)=[just=left BACKGROUND =cx685c53 &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BORDERRIGHTCOLOR=white BORDERTOPCOLOR=white &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreground=white BORDERCOLOR=white &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font = (Arial,10pt) font_weight = bold]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; style(column)=[BORDERRIGHTCOLOR=white &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreground=cx685c53 BORDERTOPCOLOR=white &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BORDERCOLOR=white font = (Arial,10pt)];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; column program Count ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt; define program / display&amp;nbsp; "Program" &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)=[ indent=4 tagattr="format:@" &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; just=center background=cxffffff foreground=cx685c53] &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)=[just=left indent=2 ];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;define Count / analysis "Count"&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)=[ just=center background=cxffffff &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreground=cx685c53] &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)=[just=left indent=2 ];&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;rbreak after&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / summarize ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;compute after;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; program='Total';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; call define(_row_,'style',"style=[font_weight=bold]");&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;endcomp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.excelxp close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 18:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77314#M8777</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-22T18:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77315#M8778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cynthia: Very much appreciated!&amp;nbsp; You used the same method to test as I did, but your code actually produces an xml file that I could open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the OP, the only thing I can think of is that he is somehow introducing a space into column b.&amp;nbsp; That would produce the kind of appearance he was referring to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 19:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77315#M8778</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-22T19:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77316#M8779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Cynthia and Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using EG 4.2 version and Unix environment. I see the attached files with titles not getting split, even i am getting the same when&amp;nbsp; &lt;STRONG style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;Absolute_Column_Width = '30,25', but i dont want to display like that as it looks more spacious, when i tried giving &lt;STRONG style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;Absolute_Column_Width = '15,10' then the titles are getting split, which i dont want to happen, is there any way that this column width doesnt overrides the titles width.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the colors also am getting like the sample you have provided, i am unable to understand why the color is getting overrided when it is coming for the Header part(&lt;STRONG style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;cx685c53). The same color we given for titles and data part, can you suggest on this.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 07:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77316#M8779</guid>
      <dc:creator>Vish33</dc:creator>
      <dc:date>2012-11-29T07:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77317#M8780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="3643" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: I didn't see any attachment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 14:40:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77317#M8780</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-29T14:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Titles in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77318#M8781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; As I explained, Excel is messing up the color rendering. SAS is sending the color code. Excel is rendering it incorrectly. I suspect, but it's only a hunch, that somehow Excel is interpreting the colors wrong. I don't know anything to do about it except find a different shade of gray. For example, if I use cx686868 as the color to send, Excel seems to not tamper with the color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; As for the title, when I use an ABSOLUTE_COLUMN_WIDTH="15,10", I did not get any title truncation. See my screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I'd recommend that you open a track with Tech Support on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11935iC2FC8EBB791AB16D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="no_trunc_15_10.png" title="no_trunc_15_10.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11936i9C421252A8C3FAC6/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="use_cx686868.png" title="use_cx686868.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 23:01:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Issue-with-Titles-in-Excel/m-p/77318#M8781</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-11-29T23:01:30Z</dc:date>
    </item>
  </channel>
</rss>

