<?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: Suppress_bylines = 'no' with Proc Print in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54988#M772</link>
    <description>Hi:&lt;BR /&gt;
  I figure, from your use of &amp;amp;_ODSDEST and &amp;amp;_ODSSTYLE that you have code that creates a stored process using the SAS Enterprise Intelligence Platform.&lt;BR /&gt;
 &lt;BR /&gt;
  The only kind of results that Excel can "receive" from a stored process are: CSV, HTML and SASReport XML, as explained in this Tech Support Note.&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/36/031.html" target="_blank"&gt;http://support.sas.com/kb/36/031.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  There are some other ODS destinations that you can use in stored processes, but they are mostly HTML based, such as PHTML, CHTML or MSOFFICE2K. &lt;BR /&gt;
&lt;BR /&gt;
   Normally, you cannot use TAGSETS.EXCELXP as an override to _ODSDEST -- excpet in the Information Deliver Portal. The type of XML created by TAGSETS.EXCELXP is not compatible with the Enterprise Intelligence Platform. In SAS 9.1.3, I did test TAGSETS.EXCELXP with the SAS Enterprise Intelligence Platform and the only client applications where you can use TAGSETS.EXCELXP are the Information Delivery Portal and/or SAS Enterprise Guide. (And, if you use TAGSETS.EXCELXP with SAS Enterprise Guide, you cannot open the Spreadsheet Markup Language XML file inside of EG in EG 4.1.)&lt;BR /&gt;
&lt;BR /&gt;
  I suggest you either search previous forum postings for more information about how to make this work in the Information Deliver Portal or work with Tech Support on this issue.&lt;BR /&gt;
 &lt;BR /&gt;
Cynthia</description>
    <pubDate>Thu, 16 Jul 2009 02:48:37 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-07-16T02:48:37Z</dc:date>
    <item>
      <title>Suppress_bylines = 'no' with Proc Print</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54986#M770</link>
      <description>I want to output the by goups in the following to the same sheet (in EXCEL) using the EXCELXP tagset.  I want to display the byline on the row about each new by group (like Year = 2006 Procedure_sort = A).&lt;BR /&gt;
&lt;BR /&gt;
The following code works if I use the suppress_bylines = "yes" and in that case the byline is blank.&lt;BR /&gt;
&lt;BR /&gt;
Here is code&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
%let _ODSDEST=tagsets.ExcelXP;&lt;BR /&gt;
%let _ODSSTYLE=Normal;&lt;BR /&gt;
&lt;BR /&gt;
ods &amp;amp;_ODSDEST path='c:\temp' file='ExcelXP-sample10.xml' style=&amp;amp;_ODSSTYLE &lt;BR /&gt;
  options( skip_space='3,2,0,0,1' sheet_interval='none' embedded_titles='yes'&lt;BR /&gt;
               suppress_bylines='no' );&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
  PROC PRINT DATA=TEMP3 NOBS SPLIT="*";&lt;BR /&gt;
VAR LOCATION_SORT ALLPLAN_ALLOWED_AMT SELF_INSURED_ALLOWED_AMT NON_GROUP_ALLOWED_AMT&lt;BR /&gt;
    SMALL_GROUP_ALLOWED_AMT MEDIUM_GROUP_ALLOWED_AMT LARGE_GROUP_ALLOWED_AMT;&lt;BR /&gt;
BY YEAR PROVIDER_SORT;&lt;BR /&gt;
LABEL LOCATION_SORT = "LOCATION*OF SERVICE"&lt;BR /&gt;
      ALLPLAN_ALLOWED_AMT = "ALL*PLANS"&lt;BR /&gt;
      SELF_INSURED_ALLOWED_AMT ="SELF-INSURED*PLANS"&lt;BR /&gt;
      NON_GROUP_ALLOWED_AMT = "NON-GROUP*PLANS"&lt;BR /&gt;
      SMALL_GROUP_ALLOWED_AMT = "SMALL*GROUP*PLANS"&lt;BR /&gt;
      MEDIUM_GROUP_ALLOWED_AMT = "MEDIUM*GROUP*PLANS"&lt;BR /&gt;
      LARGE_GROUP_ALLOWED_AMT = "LARGE*GROUP*PLANS";&lt;BR /&gt;
RUN; &lt;BR /&gt;
&lt;BR /&gt;
Any help would be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
&lt;BR /&gt;
Tom</description>
      <pubDate>Wed, 15 Jul 2009 22:39:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54986#M770</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-07-15T22:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress_bylines = 'no' with Proc Print</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54987#M771</link>
      <description>I should have added -- when I say not working -- I mean it creates the output file but it cannot be opened in EXCEL (using EXCEL version 2007)</description>
      <pubDate>Wed, 15 Jul 2009 22:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54987#M771</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-07-15T22:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress_bylines = 'no' with Proc Print</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54988#M772</link>
      <description>Hi:&lt;BR /&gt;
  I figure, from your use of &amp;amp;_ODSDEST and &amp;amp;_ODSSTYLE that you have code that creates a stored process using the SAS Enterprise Intelligence Platform.&lt;BR /&gt;
 &lt;BR /&gt;
  The only kind of results that Excel can "receive" from a stored process are: CSV, HTML and SASReport XML, as explained in this Tech Support Note.&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/36/031.html" target="_blank"&gt;http://support.sas.com/kb/36/031.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  There are some other ODS destinations that you can use in stored processes, but they are mostly HTML based, such as PHTML, CHTML or MSOFFICE2K. &lt;BR /&gt;
&lt;BR /&gt;
   Normally, you cannot use TAGSETS.EXCELXP as an override to _ODSDEST -- excpet in the Information Deliver Portal. The type of XML created by TAGSETS.EXCELXP is not compatible with the Enterprise Intelligence Platform. In SAS 9.1.3, I did test TAGSETS.EXCELXP with the SAS Enterprise Intelligence Platform and the only client applications where you can use TAGSETS.EXCELXP are the Information Delivery Portal and/or SAS Enterprise Guide. (And, if you use TAGSETS.EXCELXP with SAS Enterprise Guide, you cannot open the Spreadsheet Markup Language XML file inside of EG in EG 4.1.)&lt;BR /&gt;
&lt;BR /&gt;
  I suggest you either search previous forum postings for more information about how to make this work in the Information Deliver Portal or work with Tech Support on this issue.&lt;BR /&gt;
 &lt;BR /&gt;
Cynthia</description>
      <pubDate>Thu, 16 Jul 2009 02:48:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Suppress-bylines-no-with-Proc-Print/m-p/54988#M772</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-07-16T02:48:37Z</dc:date>
    </item>
  </channel>
</rss>

