<?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: Fit to page width in ODS TAGSETS.EXCELXP in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24692#M4131</link>
    <description>Change your ods statement to this.&lt;BR /&gt;
&lt;BR /&gt;
ODS TAGSETS.EXCELXP FILE="large.xls" OPTIONS(PAGES_FITWIDTH="2" FitToPage="YES") ;&lt;BR /&gt;
&lt;BR /&gt;
It would be nice if the FitToPage option would turn on if a FitWidth or Height were given, I will add that in a future release of the tagset.</description>
    <pubDate>Wed, 18 Jun 2008 13:43:18 GMT</pubDate>
    <dc:creator>Eric_SAS</dc:creator>
    <dc:date>2008-06-18T13:43:18Z</dc:date>
    <item>
      <title>Fit to page width in ODS TAGSETS.EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24689#M4128</link>
      <description>Hi all.&lt;BR /&gt;
Something weird does happen when I use the ExcelXp tagset to display large tables. In fact, the weird thing is that it does &lt;I&gt;not&lt;/I&gt; happen to behave like expected.&lt;BR /&gt;
Il want to use the FIT_PAGEWIDTH option to resize automatically the output when printing, on a single page. The "printer setup" is correctly defined in Excel, but the radio button is not set, so any settings on page width or height are just ignored.&lt;BR /&gt;
Am I wrong somewhere, or is there something missing there ?&lt;BR /&gt;
Sample below :[pre]&lt;BR /&gt;
DATA work.large ;&lt;BR /&gt;
	ARRAY columns (15) ;&lt;BR /&gt;
	DO i = 1 TO 100 ;&lt;BR /&gt;
		DO j= 1 TO DIM(columns) ;&lt;BR /&gt;
			columns(j)=RANNOR(0) ;&lt;BR /&gt;
		END ;&lt;BR /&gt;
		OUTPUT ;&lt;BR /&gt;
	END ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
ODS TAGSETS.EXCELXP FILE="c:\temp\large.xls" OPTIONS(PAGES_FITWIDTH="2") ;&lt;BR /&gt;
PROC PRINT ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
ODS TAGSETS.EXCELXP CLOSE ;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
Thanks in advance for any hint, help or suggestion.&lt;BR /&gt;
olivier</description>
      <pubDate>Wed, 11 Jun 2008 13:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24689#M4128</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2008-06-11T13:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Fit to page width in ODS TAGSETS.EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24690#M4129</link>
      <description>Hi, Olivier:&lt;BR /&gt;
  I have never experimented with PAGES_FITWIDTH, but if you open a track with Tech Support, and this is a reproducible example; then the track will be handled by the folks who know how to fix the issue.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 11 Jun 2008 16:12:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24690#M4129</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-06-11T16:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Fit to page width in ODS TAGSETS.EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24691#M4130</link>
      <description>Consider using the FitToPages option.  As in:&lt;BR /&gt;
[pre]&lt;BR /&gt;
       ODS TAGSETS.EXCELXP FILE="c:\temp\large.xls" OPTIONS(PAGES_FITWIDTH="2" FitToPages="YES") ;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
------------------------------------------------------------------------------&lt;BR /&gt;
The following web-page was helpful to me at the time of this post.  &lt;BR /&gt;
 &lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Also using ...&lt;BR /&gt;
[pre]&lt;BR /&gt;
       ODS TAGSETS.EXCELXP OPTIONS( doc="help" );ODS TAGSETS.EXCELXP close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
...will output useful help documentation to the log stream.&lt;BR /&gt;
&lt;BR /&gt;
I really find TAGSETS.EXCELXP helpful.  I'm thankful to those whom have worked on this.</description>
      <pubDate>Mon, 16 Jun 2008 22:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24691#M4130</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-06-16T22:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Fit to page width in ODS TAGSETS.EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24692#M4131</link>
      <description>Change your ods statement to this.&lt;BR /&gt;
&lt;BR /&gt;
ODS TAGSETS.EXCELXP FILE="large.xls" OPTIONS(PAGES_FITWIDTH="2" FitToPage="YES") ;&lt;BR /&gt;
&lt;BR /&gt;
It would be nice if the FitToPage option would turn on if a FitWidth or Height were given, I will add that in a future release of the tagset.</description>
      <pubDate>Wed, 18 Jun 2008 13:43:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fit-to-page-width-in-ODS-TAGSETS-EXCELXP/m-p/24692#M4131</guid>
      <dc:creator>Eric_SAS</dc:creator>
      <dc:date>2008-06-18T13:43:18Z</dc:date>
    </item>
  </channel>
</rss>

