<?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: ExcelXP - cellheight statement ignored in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70327#M8075</link>
    <description>Not at all. I can make the row height adjust in Excel -- just not with the CELLHEIGHT style attribute. There are internal controls in the EXCELXP suboptions -- namely the ROW_HEIGHTS suboptions and the AUTOFIT_HEIGHTS suboption. You will have to experiment with them to see which will give you the results that you want.&lt;BR /&gt;
&lt;BR /&gt;
Sometimes you have to use a style template change to impact the output from TAGSETS.EXCELXP, but if you find that ROW_HEIGHTS and AUTOFIT_HEIGHTS suboptions don't work for you, you might want to open a track with Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 09 Feb 2011 17:10:52 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2011-02-09T17:10:52Z</dc:date>
    <item>
      <title>ExcelXP - cellheight statement ignored</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70324#M8072</link>
      <description>Hi guys,&lt;BR /&gt;
&lt;BR /&gt;
I'm creating a report with the ExcelXP tagset and it seems the cellheight statement is being ignored.  In my example bellow I create 2 rows via the line statement, 1 with inline formatting to change the font and cell height and the other with no formatting at all.  The issue is that "test line 2" does get the modified font but the modified cell height is not honored for some reason.  Any help would be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
PS- I've also tried modifying the template with a proc template statement and I get the same thing... I can change font face, size, etc but cellheight won't change.&lt;BR /&gt;
&lt;BR /&gt;
data test;&lt;BR /&gt;
	input @001 policy_number $10.&lt;BR /&gt;
		  @011 name $10.;&lt;BR /&gt;
cards;&lt;BR /&gt;
1111111111Person1&lt;BR /&gt;
2222222222Person2&lt;BR /&gt;
3333333333Person3&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
ods tagsets.ExcelXP path="c:\temp\" file="temp.xls";&lt;BR /&gt;
&lt;BR /&gt;
proc report data=test nowindows;&lt;BR /&gt;
	column policy_number name;&lt;BR /&gt;
	define policy_number / order "Policy Number";&lt;BR /&gt;
	define name / "Name";&lt;BR /&gt;
&lt;BR /&gt;
	compute before policy_number;&lt;BR /&gt;
		line 'test line 1';&lt;BR /&gt;
		line "^S={font_face=Federation CELLHEIGHT=10pt} test line 2";&lt;BR /&gt;
	endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods _all_ close;</description>
      <pubDate>Tue, 08 Feb 2011 22:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70324#M8072</guid>
      <dc:creator>FrankE</dc:creator>
      <dc:date>2011-02-08T22:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP - cellheight statement ignored</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70325#M8073</link>
      <description>Hi:&lt;BR /&gt;
  Look at the suboptions available in TAGSETS.EXCELXP for controlling row heights, specifically mentioned in these previous forum postings for a variety of different scenarios:&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=37260醌" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=37260醌&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=42955Ɤ" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=42955Ɤ&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=14286㟎" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=14286㟎&lt;/A&gt;&lt;BR /&gt;
   &lt;BR /&gt;
  To reveal the documentation on suboptions, use this along with your other suboptions:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods tagsets.ExcelXP path="c:\temp\" file="temp.xls"&lt;BR /&gt;
     options(doc='Help');&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                     &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 08 Feb 2011 23:30:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70325#M8073</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-02-08T23:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP - cellheight statement ignored</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70326#M8074</link>
      <description>Yep I saw those posts and from what I gather.. it just doesn't work?</description>
      <pubDate>Wed, 09 Feb 2011 14:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70326#M8074</guid>
      <dc:creator>FrankE</dc:creator>
      <dc:date>2011-02-09T14:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP - cellheight statement ignored</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70327#M8075</link>
      <description>Not at all. I can make the row height adjust in Excel -- just not with the CELLHEIGHT style attribute. There are internal controls in the EXCELXP suboptions -- namely the ROW_HEIGHTS suboptions and the AUTOFIT_HEIGHTS suboption. You will have to experiment with them to see which will give you the results that you want.&lt;BR /&gt;
&lt;BR /&gt;
Sometimes you have to use a style template change to impact the output from TAGSETS.EXCELXP, but if you find that ROW_HEIGHTS and AUTOFIT_HEIGHTS suboptions don't work for you, you might want to open a track with Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 09 Feb 2011 17:10:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-cellheight-statement-ignored/m-p/70327#M8075</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-02-09T17:10:52Z</dc:date>
    </item>
  </channel>
</rss>

