<?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 SAS ODS TAGSETS EXCELXP in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859372#M26182</link>
    <description>&lt;P&gt;Hi guys!&lt;/P&gt;&lt;P&gt;When I check the version of ODS tagsets excelxp in my SAS 9.1.3, It shows v1.130, 08/02/2013. However when I run a specific sascode, In the log it shows, tagsets excelxp version v1.28, 08/29/2005. Can anyone please help me why it using v1.28 in place of v1.130?&lt;/P&gt;&lt;P&gt;I noticed the sascode was running well and good an year back with ODS excelxp tagsets v1.86, 04/15/2008 and now after one year, this code is using v1.28, 08/29/2005. Can anyone please tell me why this version got downgraded from v1.86 to v1.28. This is causing errors and issues in my report.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2023 13:29:57 GMT</pubDate>
    <dc:creator>moltrexuser</dc:creator>
    <dc:date>2023-02-17T13:29:57Z</dc:date>
    <item>
      <title>SAS ODS TAGSETS EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859372#M26182</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;&lt;P&gt;When I check the version of ODS tagsets excelxp in my SAS 9.1.3, It shows v1.130, 08/02/2013. However when I run a specific sascode, In the log it shows, tagsets excelxp version v1.28, 08/29/2005. Can anyone please help me why it using v1.28 in place of v1.130?&lt;/P&gt;&lt;P&gt;I noticed the sascode was running well and good an year back with ODS excelxp tagsets v1.86, 04/15/2008 and now after one year, this code is using v1.28, 08/29/2005. Can anyone please tell me why this version got downgraded from v1.86 to v1.28. This is causing errors and issues in my report.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 13:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859372#M26182</guid>
      <dc:creator>moltrexuser</dc:creator>
      <dc:date>2023-02-17T13:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS TAGSETS EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859394#M26184</link>
      <description>&lt;P&gt;It's hard to say.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is&amp;nbsp; a version of tagsets.excelxp that ships with SAS. But it's possible within your SAS session to run PROC TEMPLATE code to load a different version of the template.&amp;nbsp; It's also possible that your SAS code is pointing to a permanent item store (I think that's the word, like a catalog for templates) that is maintained by someone else.&amp;nbsp; In that case, they could have upgraded or downgraded without telling you.&amp;nbsp; It's also possible that you have templates stored in SASUSER.TEMPLAT, and it's possible you accidentally overwrote the template definition at some point.&amp;nbsp; (Personally, I think it was a mistake for SAS to make the default to be that templates are written to the permanent SASUSER item store, instead of work. This can cause a lot of accidents).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To start with, in the problematic session, you can run:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path show ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That will show you in the log which locations SAS is looking in to find templates.&amp;nbsp; After you know that, you can search in those places to find the item store.&amp;nbsp; And you can at least see when it was last updated, and try to figure out who/when/why it was updated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859394#M26184</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2023-02-17T14:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ODS TAGSETS EXCELXP</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859411#M26185</link>
      <description>&lt;P&gt;Either your code is running on a server that doesn't have the same version, or somewhere in the code you're sourcing the original tagsets excelxp definition code and re-running it overwriting the current version.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd guess the last option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look for something like this in the code:&lt;/P&gt;
&lt;PRE&gt;   %include "c:\myfiles\excltags.tpl";&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Replace that file with the most recent one or delete it entirely and assume you'll manually update the code.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 17:54:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/SAS-ODS-TAGSETS-EXCELXP/m-p/859411#M26185</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-02-17T17:54:20Z</dc:date>
    </item>
  </channel>
</rss>

