<?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 Tagset and sheet_name option in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1464#M661</link>
    <description>I don't think the version of Excel is the problem here. Please go ahead and open a tracking entry with Technical Support using the below URL. Be sure to include the Version of SAS to include the service pack and send a copy of this .XLS file which was generated.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/contact/submit_emits2.html" target="_blank"&gt;http://support.sas.com/techsup/contact/submit_emits2.html&lt;/A&gt;</description>
    <pubDate>Thu, 28 Sep 2006 16:33:28 GMT</pubDate>
    <dc:creator>Chevell_sas</dc:creator>
    <dc:date>2006-09-28T16:33:28Z</dc:date>
    <item>
      <title>ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1457#M654</link>
      <description>Anybody ever have problems with the XP tagset sheet_name option?  When I use it, my worksheets are being named like so 'Table 1 - Date Set WORK.TEMP'.  I believe this is the default, so for some reason this option is not begin picked up.  Strangely, other tagset options are working (like autofilter = 'all').  My code is below.  This is SAS on Unix by the way.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods tagsets.excelxp path='~/' file='temp.xls' style=minimal;&lt;BR /&gt;
ods tagsets.excelxp options(sheet_name='DOESNTWORK');&lt;BR /&gt;
proc print data=temp;&lt;BR /&gt;
var _all_;&lt;BR /&gt;
run;&lt;BR /&gt;
ods tagset.excelxp close;</description>
      <pubDate>Wed, 27 Sep 2006 18:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1457#M654</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-27T18:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1458#M655</link>
      <description>Did you download the updated ExcelXP tagset from the below&lt;BR /&gt;
web site, or are you running with the tagset which was shipped with the SAS 9.1?&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/topics/odsmarkup/" target="_blank"&gt;http://support.sas.com/rnd/base/topics/odsmarkup/&lt;/A&gt;</description>
      <pubDate>Wed, 27 Sep 2006 20:53:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1458#M655</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-09-27T20:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1459#M656</link>
      <description>Nice.  That might be my problem.  Any ideas how I would go about updating/replacing the existing tagset with the new?</description>
      <pubDate>Wed, 27 Sep 2006 21:12:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1459#M656</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-27T21:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1460#M657</link>
      <description>Got it.  That did it.  Many thanks.</description>
      <pubDate>Wed, 27 Sep 2006 21:19:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1460#M657</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-27T21:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1461#M658</link>
      <description>So the sheet name option is working great but I'm seeing some formatting problems now.  I tried using the following in line sytle overides and it transforms all values that were previoulsy alpha numberic (varible id example: "6455F3435") to O (zero). Same thing happens to my dollar amounts (varible amt).  They turn to $0.  Any ideas here?&lt;BR /&gt;
&lt;BR /&gt;
 *Output report;&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods tagsets.excelxp path='~/' file='mod.xls' style=minimal;&lt;BR /&gt;
ods tagsets.excelxp options(sheet_name='Temp' autofilter='all' frozen_headers='yes' width_fudge='0.7');&lt;BR /&gt;
proc print data=temp label noobs;&lt;BR /&gt;
var plan;&lt;BR /&gt;
var id / style={tagattr='format:@'}; -Note also tried Text&lt;BR /&gt;
&lt;BR /&gt;
var amt /style={tagattr='format:$#,##0_);[Red]\($#,##0\)'};&lt;BR /&gt;
run;&lt;BR /&gt;
ods tagset.ExcelXP close;</description>
      <pubDate>Thu, 28 Sep 2006 02:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1461#M658</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-28T02:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1462#M659</link>
      <description>One thing that I spotted is that the opening ODS statement does not match the closing statement. However, after testing this with a single record, this appeared to works as expected. Does the below work for you? If this does not, you might want to open a tracking entry with Technical Support. We would want a copy of this .XLS file.&lt;BR /&gt;
&lt;BR /&gt;
data one;&lt;BR /&gt;
  input id $ amt;&lt;BR /&gt;
cards;&lt;BR /&gt;
6455F3435 10000&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods tagsets.excelxp file="temp3.xls" style=minimal &lt;BR /&gt;
options(sheet_name='Temp'&lt;BR /&gt;
        autofilter='all' &lt;BR /&gt;
        frozen_headers='yes' &lt;BR /&gt;
        width_fudge='0.7');&lt;BR /&gt;
proc print data=one label noobs;&lt;BR /&gt;
var id / style={tagattr='format:@'};&lt;BR /&gt;
var amt /&lt;BR /&gt;
style={tagattr='format:$#,##0_);[Red]\($#,##0\)'};&lt;BR /&gt;
run;&lt;BR /&gt;
ods tagsets.excelXP close;</description>
      <pubDate>Thu, 28 Sep 2006 13:27:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1462#M659</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-09-28T13:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1463#M660</link>
      <description>Tried your example and zero values are returned for both.  I am however not running XP but rather 2003.  Could this be the issue?</description>
      <pubDate>Thu, 28 Sep 2006 14:02:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1463#M660</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-28T14:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1464#M661</link>
      <description>I don't think the version of Excel is the problem here. Please go ahead and open a tracking entry with Technical Support using the below URL. Be sure to include the Version of SAS to include the service pack and send a copy of this .XLS file which was generated.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/contact/submit_emits2.html" target="_blank"&gt;http://support.sas.com/techsup/contact/submit_emits2.html&lt;/A&gt;</description>
      <pubDate>Thu, 28 Sep 2006 16:33:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1464#M661</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-09-28T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1465#M662</link>
      <description>Will do.  I reverted to ods html file=temp.xls for my product.  It's less elegant but does the job.  Any ideas how to prevent long numbers from being displayed in scientific notation within excel?</description>
      <pubDate>Thu, 28 Sep 2006 17:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1465#M662</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-09-28T17:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1466#M663</link>
      <description>&amp;gt; Any ideas how to prevent long numbers from being displayed in scientific notation within excel? &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Why not just widen columns in Excel manually ? That should display numbers in a normal way (hope so).</description>
      <pubDate>Fri, 29 Sep 2006 12:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1466#M663</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2006-09-29T12:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1467#M664</link>
      <description>You can use the Excel CSS style property mso-number-format using the text format as the argument which will display the full value. You can do this with the MSOffice2k tagset and the HTML destination.&lt;BR /&gt;
&lt;BR /&gt;
data one;&lt;BR /&gt;
  x="123456789101112";&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods html file="temp7.xls";&lt;BR /&gt;
&lt;BR /&gt;
proc print data=one;&lt;BR /&gt;
var x / style(data)={htmlstyle="mso-number-format:\@"};&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods html close;</description>
      <pubDate>Fri, 29 Sep 2006 13:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1467#M664</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-09-29T13:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1468#M665</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I seem to have to same problem: the sheet_name doesn't change the tab name.&lt;BR /&gt;
&lt;BR /&gt;
So how did you update/replace your existing tagset with the updated one??&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.</description>
      <pubDate>Tue, 17 Oct 2006 20:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1468#M665</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-10-17T20:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: ExcelXP Tagset and sheet_name option</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1469#M666</link>
      <description>You can download the updated ExcelXP tagset from the below location. You can then either bring this file into the program editor and submit it, or %INCLUDE this file. By default, the updated tagset will be written to the SASUSER location which is where we look for the tagset first.&lt;BR /&gt;
&lt;BR /&gt;
%include "excltags.tpl";&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/topics/odsmarkup/" target="_blank"&gt;http://support.sas.com/rnd/base/topics/odsmarkup/&lt;/A&gt;</description>
      <pubDate>Thu, 19 Oct 2006 17:13:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ExcelXP-Tagset-and-sheet-name-option/m-p/1469#M666</guid>
      <dc:creator>Chevell_sas</dc:creator>
      <dc:date>2006-10-19T17:13:47Z</dc:date>
    </item>
  </channel>
</rss>

