<?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 Two issues with Reports in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Two-issues-with-Reports/m-p/21837#M3915</link>
    <description>Hello,&lt;BR /&gt;
I have two issues with using ODS. &lt;BR /&gt;
1. The title statement for the ODS PDF destination puts the entire title in 1 line because it is a paged destination. But the same title statement wraps the title if it is longer than the width of the cell in case of Excel. Note that I am not using tagsets to display the output but just pushing the output to Excel like this -&lt;BR /&gt;
%IF &amp;amp;format = Excel  &lt;BR /&gt;
  %THEN %DO; &lt;BR /&gt;
  %LET _ODSDEST = ; &lt;BR /&gt;
  %LET _ODSSTYLE = sasweb; &lt;BR /&gt;
  %LET _ODSSTYLESHEET = ; &lt;BR /&gt;
  %LET _ODSOPTIONS = ; &lt;BR /&gt;
 DATA _NULL_; &lt;BR /&gt;
 rc = STPSRV_HEADER('Content-type', 'application/vnd.ms-excel'); &lt;BR /&gt;
rc = STPSRV_HEADER('Content-disposition', 'attachment; filename=W_Util.xls'); RUN; &lt;BR /&gt;
 %END; &lt;BR /&gt;
&lt;BR /&gt;
Q:Is there a way to unwrap the title in the excel output (without having to use tagsets)? The report output fits into a single page. So it helps me to avoid the usage of tagsets.excelxp.&lt;BR /&gt;
&lt;BR /&gt;
2. I get a mysterious blue line extending the length of the longest proc report like this in the output.&lt;BR /&gt;
&lt;BR /&gt;
Titles1-10;&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
----------------------(blueline)------------&lt;BR /&gt;
title "text";&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
----------------------(blueline)------------&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
&lt;BR /&gt;
Q: How do I remove this blue line and what is causing it?&lt;BR /&gt;
&lt;BR /&gt;
Will posting the code from the title statements to the last proc report be helpful?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
saspert</description>
    <pubDate>Thu, 03 Mar 2011 22:28:17 GMT</pubDate>
    <dc:creator>saspert</dc:creator>
    <dc:date>2011-03-03T22:28:17Z</dc:date>
    <item>
      <title>Two issues with Reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Two-issues-with-Reports/m-p/21837#M3915</link>
      <description>Hello,&lt;BR /&gt;
I have two issues with using ODS. &lt;BR /&gt;
1. The title statement for the ODS PDF destination puts the entire title in 1 line because it is a paged destination. But the same title statement wraps the title if it is longer than the width of the cell in case of Excel. Note that I am not using tagsets to display the output but just pushing the output to Excel like this -&lt;BR /&gt;
%IF &amp;amp;format = Excel  &lt;BR /&gt;
  %THEN %DO; &lt;BR /&gt;
  %LET _ODSDEST = ; &lt;BR /&gt;
  %LET _ODSSTYLE = sasweb; &lt;BR /&gt;
  %LET _ODSSTYLESHEET = ; &lt;BR /&gt;
  %LET _ODSOPTIONS = ; &lt;BR /&gt;
 DATA _NULL_; &lt;BR /&gt;
 rc = STPSRV_HEADER('Content-type', 'application/vnd.ms-excel'); &lt;BR /&gt;
rc = STPSRV_HEADER('Content-disposition', 'attachment; filename=W_Util.xls'); RUN; &lt;BR /&gt;
 %END; &lt;BR /&gt;
&lt;BR /&gt;
Q:Is there a way to unwrap the title in the excel output (without having to use tagsets)? The report output fits into a single page. So it helps me to avoid the usage of tagsets.excelxp.&lt;BR /&gt;
&lt;BR /&gt;
2. I get a mysterious blue line extending the length of the longest proc report like this in the output.&lt;BR /&gt;
&lt;BR /&gt;
Titles1-10;&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
----------------------(blueline)------------&lt;BR /&gt;
title "text";&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
----------------------(blueline)------------&lt;BR /&gt;
table from a proc report&lt;BR /&gt;
&lt;BR /&gt;
Q: How do I remove this blue line and what is causing it?&lt;BR /&gt;
&lt;BR /&gt;
Will posting the code from the title statements to the last proc report be helpful?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
saspert</description>
      <pubDate>Thu, 03 Mar 2011 22:28:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Two-issues-with-Reports/m-p/21837#M3915</guid>
      <dc:creator>saspert</dc:creator>
      <dc:date>2011-03-03T22:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Two issues with Reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Two-issues-with-Reports/m-p/21838#M3916</link>
      <description>Hi:&lt;BR /&gt;
  Since you are doing this in a stored process and since other factors besides just the code might be impacting the output (such as the style template being used on the server; how you are submitting your code, etc) your best bet will be to work with Tech Support on this issue.&lt;BR /&gt;
&lt;BR /&gt;
  And, since you are probably already working with Tech Support in regard to this posting:&lt;BR /&gt;
 &lt;A href="http://support.sas.com/forums/thread.jspa?threadID=12916&amp;amp;tstart=0" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?threadID=12916&amp;amp;tstart=0&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
 ...they will already have some of the answers they need to be of the most help.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 03 Mar 2011 23:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Two-issues-with-Reports/m-p/21838#M3916</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-03-03T23:57:48Z</dc:date>
    </item>
  </channel>
</rss>

