<?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: Problem with Tagset.ExcelXP and style=minimal in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1994#M876</link>
    <description>Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
That worked, thanks!&lt;BR /&gt;
&lt;BR /&gt;
I can wait until the next version of the ExcelXP tagset is released to use the minimal style.  &lt;BR /&gt;
&lt;BR /&gt;
Thanks again&lt;BR /&gt;
&lt;BR /&gt;
Cory</description>
    <pubDate>Wed, 20 Dec 2006 20:37:09 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2006-12-20T20:37:09Z</dc:date>
    <item>
      <title>Problem with Tagset.ExcelXP and style=minimal</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1992#M874</link>
      <description>I am trying to use the tagsets.excelXP with the style set to minimal to output a report to an excel file. If there are numeric missing values, excel won't open the file created.  If I use a different style, such as SASDocPrinter, excel opens the file with no problems.  I searched the SAS website but I didn't see anything about this.  &lt;BR /&gt;
&lt;BR /&gt;
Has anyone else had this problem?  I am using the most current (June 2006) tagset definition and I am using SAS 9.1.3 service pack 3 on a WinXP machine.  I've included a small program that recreates my problem.&lt;BR /&gt;
&lt;BR /&gt;
data test;&lt;BR /&gt;
input a b c;&lt;BR /&gt;
cards;&lt;BR /&gt;
1 2 3&lt;BR /&gt;
3 . 2&lt;BR /&gt;
0 0 3&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelXP file="c:\junk.xls" style=minimal;&lt;BR /&gt;
&lt;BR /&gt;
proc print data=test;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.excelXP close;</description>
      <pubDate>Wed, 20 Dec 2006 19:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1992#M874</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-20T19:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Tagset.ExcelXP and style=minimal</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1993#M875</link>
      <description>Cory:&lt;BR /&gt;
  I'm not sure the problem is with your data. I tested an October (working/not final) version of the ExcelXP tagset and I do not believe it had a problem with style=minimal.&lt;BR /&gt;
  &lt;BR /&gt;
  In the meantime, however, if you look at this code (after you run it and use it), you should see something very similar to what you get with style=minimal and this style does work with the June tagset that's out on the ODS MARKUP web site.&lt;BR /&gt;
[pre]&lt;BR /&gt;
** Modify the XLStatistical style to get rid of;&lt;BR /&gt;
** all border lines, colors, etc;&lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.XLStatistical;&lt;BR /&gt;
    parent = styles.Statistical;&lt;BR /&gt;
	style Body from Body/&lt;BR /&gt;
	  background=_undef_;&lt;BR /&gt;
	style table from Output /&lt;BR /&gt;
	  background=_undef_&lt;BR /&gt;
	  foreground=_undef_&lt;BR /&gt;
	  borderwidth=_undef_&lt;BR /&gt;
          font_size=10pt;&lt;BR /&gt;
    style Header from Header /&lt;BR /&gt;
      background=_undef_&lt;BR /&gt;
      foreground=_undef_&lt;BR /&gt;
      borderwidth=_undef_&lt;BR /&gt;
      font_size=10pt;&lt;BR /&gt;
    style RowHeader from RowHeader /&lt;BR /&gt;
      background=_undef_&lt;BR /&gt;
      foreground=_undef_&lt;BR /&gt;
      borderwidth=_undef_&lt;BR /&gt;
      font_size=10pt;&lt;BR /&gt;
    style Data from Data /&lt;BR /&gt;
      background=_undef_&lt;BR /&gt;
      foreground=_undef_&lt;BR /&gt;
      borderwidth=_undef_&lt;BR /&gt;
      font_size=10pt;&lt;BR /&gt;
  end;&lt;BR /&gt;
run; &lt;BR /&gt;
             &lt;BR /&gt;
ods tagsets.excelxp file='c:\temp\use_style.xls' &lt;BR /&gt;
    style=styles.XLStatistical;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
If you need an updated copy of the ExcelXP tagset so you can use style=minimal, you will have to contact Tech Support.&lt;BR /&gt;
  &lt;BR /&gt;
Good luck!&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 20 Dec 2006 19:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1993#M875</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2006-12-20T19:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Tagset.ExcelXP and style=minimal</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1994#M876</link>
      <description>Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
That worked, thanks!&lt;BR /&gt;
&lt;BR /&gt;
I can wait until the next version of the ExcelXP tagset is released to use the minimal style.  &lt;BR /&gt;
&lt;BR /&gt;
Thanks again&lt;BR /&gt;
&lt;BR /&gt;
Cory</description>
      <pubDate>Wed, 20 Dec 2006 20:37:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Problem-with-Tagset-ExcelXP-and-style-minimal/m-p/1994#M876</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-12-20T20:37:09Z</dc:date>
    </item>
  </channel>
</rss>

