<?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: Retaining Options in ExcelXP Tagset in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2412#M1035</link>
    <description>Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
While I'm on the topic, I use a %include to include the tagset in my code when I run it.  Is there an easy way to keep the tagset from listing as code in my log?  Can I just code 'option nosource' before the include and then turn the source back on afterwards?&lt;BR /&gt;
&lt;BR /&gt;
(I know I could save it and just point to the saved version, but I just do it this way by habit.)</description>
    <pubDate>Thu, 01 Mar 2007 19:26:41 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2007-03-01T19:26:41Z</dc:date>
    <item>
      <title>Retaining Options in ExcelXP Tagset</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2410#M1033</link>
      <description>Hi All:&lt;BR /&gt;
&lt;BR /&gt;
I'm using the ExcelXP tagset to create a number of reports in a single SAS program.  Each Excel tab created has a number of options that are specified with regard to the appearance of the report (zoom, orientation, etc.)  &lt;BR /&gt;
&lt;BR /&gt;
Is there a way that I can set these options once and not bother on each successive report - ie: the second report would "inherit" the same options as the first?  &lt;BR /&gt;
&lt;BR /&gt;
This would make maintenance much easier since I would only have to change the reporting option once, and not for each report produced.&lt;BR /&gt;
&lt;BR /&gt;
I know that I could use macro variables, but I would rather not take that approach.&lt;BR /&gt;
&lt;BR /&gt;
Any suggestions?</description>
      <pubDate>Thu, 01 Mar 2007 17:54:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2410#M1033</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2007-03-01T17:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining Options in ExcelXP Tagset</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2411#M1034</link>
      <description>Hi!&lt;BR /&gt;
  First, you have to make sure you have the latest copy of the ExcelXP tagset, by downloading it from this web site: &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; &lt;BR /&gt;
running the code (without ANY changes) and updating your sasuser.templat template store.&lt;BR /&gt;
  &lt;BR /&gt;
  Then, submit an ExcelXP job with this option:&lt;BR /&gt;
ods tagsets.excelxp file='x.xls' options(doc='help');&lt;BR /&gt;
..&lt;BR /&gt;
  Look in the SAS log for info on using and creating an INI file to use with the ExcelXP tagset....it saves all your zoom, orientation, other options in an easy to use and easy to reference file.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 01 Mar 2007 18:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2411#M1034</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-03-01T18:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining Options in ExcelXP Tagset</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2412#M1035</link>
      <description>Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
While I'm on the topic, I use a %include to include the tagset in my code when I run it.  Is there an easy way to keep the tagset from listing as code in my log?  Can I just code 'option nosource' before the include and then turn the source back on afterwards?&lt;BR /&gt;
&lt;BR /&gt;
(I know I could save it and just point to the saved version, but I just do it this way by habit.)</description>
      <pubDate>Thu, 01 Mar 2007 19:26:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2412#M1035</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2007-03-01T19:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining Options in ExcelXP Tagset</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2413#M1036</link>
      <description>Hi! &lt;BR /&gt;
  Well, I think if you do&lt;BR /&gt;
options nosource nosource2 nomprint;&lt;BR /&gt;
&lt;BR /&gt;
that should just about get rid of it all.&lt;BR /&gt;
cynthia&lt;BR /&gt;
&lt;BR /&gt;
PS: I think you can throw a nonotes in there, too. But I find it troublesome to always do a %include. So I have a perm template store where I write the updated tagsets and styles and then I just do:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods path mytemp.templat(update)&lt;BR /&gt;
         sashelp.tmplmst(read);&lt;BR /&gt;
[/pre]&lt;BR /&gt;
in order to save myself having to submit the template code each time. You may have noticed that the excelxp tagset is quite lengthy!</description>
      <pubDate>Thu, 01 Mar 2007 23:28:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Retaining-Options-in-ExcelXP-Tagset/m-p/2413#M1036</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-03-01T23:28:29Z</dc:date>
    </item>
  </channel>
</rss>

