<?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 Updating Extrenal Excel Pivot Table in SAS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167515#M43387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have gone through several searches, including the SAS community and cannot find a solution to this problem. I simply want to open an Excel workbook and refresh all the pivot tables within the workbook in a SAS Program. Below is the code that I have come up with, which opens the workbook, but just keeps it open giving me the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ERROR: DDE session not ready.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FATAL: Unrecoverable I/O error detected in the execution of the DATA step program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aborted during the EXECUTION phase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;options noxwait noxsync; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=system('start excel'); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=sleep(20); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt; &lt;/P&gt;&lt;P&gt;&lt;CODE&gt;filename cmds dde 'excel|system'; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file cmds; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[open(""&amp;amp;path\&amp;amp;f_name..xlsx"")]";&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[pivot.refresh()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[save(""&amp;amp;path\&amp;amp;f_name..xlsx"")]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[quit()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;quit; &lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2014 17:15:21 GMT</pubDate>
    <dc:creator>Statdork</dc:creator>
    <dc:date>2014-04-03T17:15:21Z</dc:date>
    <item>
      <title>Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167515#M43387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have gone through several searches, including the SAS community and cannot find a solution to this problem. I simply want to open an Excel workbook and refresh all the pivot tables within the workbook in a SAS Program. Below is the code that I have come up with, which opens the workbook, but just keeps it open giving me the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ERROR: DDE session not ready.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FATAL: Unrecoverable I/O error detected in the execution of the DATA step program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aborted during the EXECUTION phase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;options noxwait noxsync; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=system('start excel'); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=sleep(20); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt; &lt;/P&gt;&lt;P&gt;&lt;CODE&gt;filename cmds dde 'excel|system'; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file cmds; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[open(""&amp;amp;path\&amp;amp;f_name..xlsx"")]";&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[pivot.refresh()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[save(""&amp;amp;path\&amp;amp;f_name..xlsx"")]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[quit()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;quit; &lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 17:15:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167515#M43387</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-03T17:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167516#M43388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some suggestions/guesses based on the documentation below:&lt;/P&gt;&lt;P&gt;1. When you open the file you're not on an active cell, so nothing refreshes.&lt;/P&gt;&lt;P&gt;2. Try suggesting pivot tables names.&lt;/P&gt;&lt;P&gt;3. You usually get a pop up when opening an Excel file about refreshing links, that may be an issue.&lt;/P&gt;&lt;P&gt;4. Write or record VBA code in the workbook to refresh the tables and then use DDE to run the macros if you can't find workarounds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the DDE documentation:&lt;/P&gt;&lt;P&gt;Macro Sheets Only&lt;/P&gt;&lt;P&gt;Refreshes a PivotTable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PIVOT.REFRESH(name)&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp; is the name of the PivotTable the user would like to refresh with current data. If&amp;nbsp; name is omitted, Microsoft Excel will use the PivotTable containing the active cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remarks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the function is successful, it returns TRUE; otherwise, it returns the #VALUE! error value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If name is not a valid PivotTable name, then the #VALUE! error value is returned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 17:23:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167516#M43388</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-04-03T17:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167517#M43389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reeza, thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried using both the active cell and the pivot table name to no avail. I don't get any popup when using excel as you noted in 2 above and recording a VBA macro in Excel is not an option as I have to save the file as .xlsm and then cannot wrote a SAS dataset out to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the most recent code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;options noxwait noxsync; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=system('start excel'); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=sleep(20); &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;filename cmds dde 'excel|system'; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file cmds; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[open(""&amp;amp;path\&amp;amp;f_name..xlsx"")]";&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '[workbook.select("Pivot")]';&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '[select("A1")]';&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[pivot.refresh()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[save()]";&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[quit()]"; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;run; &lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;quit&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 19:37:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167517#M43389</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-03T19:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167518#M43390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I should note that I am referencing the following to a tab within the workbook called Pivot. Could this be the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put '[workbook.select("Pivot")]';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 19:39:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167518#M43390</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-03T19:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167519#M43391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can export data to an XLSM file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to attach a sample workbook where you have the issue I can take a further look into, but I don't feel like mocking up a scenario. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 21:18:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167519#M43391</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-04-03T21:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167520#M43392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't mean it is physically impossible, I should have clarified. There are no business partners in the history of the world that want to open up an xlsm file. I know I could write the data to the .xlsm file and then make a copy of it saving it as .xlsx, but I am close to this solution. At this point, I have skipped trying to update the pivot table by name. I can open the .xlsx file and activate the sheet that I need; however, it will not select the range of cells that I want to refresh, any idea how to do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 21:25:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167520#M43392</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-03T21:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167521#M43393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I manually open the .xlsx file and select a cell within the pivot table, then save my original code above refreshes it. Frustrating. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 21:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167521#M43393</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-03T21:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167522#M43394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to put your reference in as RC not A4, you can't select a header row in a pivot (I think?) so try selecting the first cell.&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp; put '[select("R2C1")]';&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2014 22:18:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167522#M43394</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-04-03T22:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167523#M43395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh....row, column....that is a duh moment for me. I was thinking in terms of cell range rather than how DDE needs to reference the cell. Thanks Reeza, got it working I appreciate it! For anyone else that needs a solution like this, this is the code that works for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Tell SAS to open Excel */&lt;/P&gt;&lt;P&gt;options noxwait noxsync;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=system('start excel');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc=sleep(10);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Execute VBA code via SAS DDE - open file, select sheet with pivot, put cursor on pivot table and refresh pivot table */&lt;/P&gt;&lt;P&gt;filename cmds dde 'excel|system';&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file cmds;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[open(""\\&amp;amp;path\&amp;amp;f_name..xlsx"")]";&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '[workbook.activate("Pivot")]';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '[select("R1C1")]';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put '[pivot.refresh()]';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[save()]";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put "[quit()]";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2014 14:38:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167523#M43395</guid>
      <dc:creator>Statdork</dc:creator>
      <dc:date>2014-04-04T14:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167524#M43396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the above code work in Unix SAS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 19:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167524#M43396</guid>
      <dc:creator>archana</dc:creator>
      <dc:date>2014-05-27T19:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Extrenal Excel Pivot Table in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167525#M43397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it won't &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 May 2014 19:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Updating-Extrenal-Excel-Pivot-Table-in-SAS/m-p/167525#M43397</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-05-27T19:06:45Z</dc:date>
    </item>
  </channel>
</rss>

