<?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: How proc export to a particular row and column in Excel? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201151#M50214</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply, I wanted to places tables next to each other. Nothing major. But, if this is complex, I have something else lined up. I just wondered if it was possible.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jul 2015 13:48:08 GMT</pubDate>
    <dc:creator>TashaBee</dc:creator>
    <dc:date>2015-07-13T13:48:08Z</dc:date>
    <item>
      <title>How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201149#M50212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt;"&gt;I was wondering if there is a way to use proc export to place data in a particular row and column in Excel. I know that proc import can access a row and column, but I have not found anything for proc export.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 13:31:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201149#M50212</guid>
      <dc:creator>TashaBee</dc:creator>
      <dc:date>2015-07-13T13:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201150#M50213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First recommendation, don't use proc import/export - they are guessing procedures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second point, what exactly is in the spreadsheet your trying to change, Excel is not a good tool for anything, but especially data.&amp;nbsp;&amp;nbsp; With SAS you *could* use DDE (which is very old tech and not recommended), you could libname excel to the file, and set cell values there.&amp;nbsp; However if I really had to do this (and I would really not be happy with using Excel for anything other than management toy), I would export the values to be updated into a CSV file from SAS.&amp;nbsp; Then in the spreadsheet I wanted to change I would write some VBA code to open the CSV, and copy the data items to specific cells.&amp;nbsp; VBA is very simple and there are plenty of examples online for doing this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 13:43:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201150#M50213</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-07-13T13:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201151#M50214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply, I wanted to places tables next to each other. Nothing major. But, if this is complex, I have something else lined up. I just wondered if it was possible.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 13:48:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201151#M50214</guid>
      <dc:creator>TashaBee</dc:creator>
      <dc:date>2015-07-13T13:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201152#M50215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, well that's different.&amp;nbsp; Use tagsets.Excelxp:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file="xyz.xml" options=(sheet_interval="none" sheet_name="mydata");&lt;/P&gt;&lt;P&gt;proc report data=xyx...;&lt;/P&gt;&lt;P&gt;proc report data=zyz...;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 13:54:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201152#M50215</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-07-13T13:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201153#M50216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There isn't an easy way, but there are other ways to get your data to excel and have it look presentable.&lt;/P&gt;&lt;P&gt;If you absolutely need to link to specific cells, VB is a good way to go.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS TAGSETS and EXCEL are two options. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html" title="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html"&gt;Base SAS: Demo: ExcelXP Tagset and Microsoft Excel&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 14:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201153#M50216</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-07-13T14:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201154#M50217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tables are stacked. Below is the concept that I am looking at. I guess I will have to rely on VB. I was hoping that it would be possible in SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/11142_Capture.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 15:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201154#M50217</guid>
      <dc:creator>TashaBee</dc:creator>
      <dc:date>2015-07-13T15:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201155#M50218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See panel option in ODS MSOFFICE2K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html" title="http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html"&gt;Base SAS: The MSOffice2K_x Tagset Adds Options to the MSOffice2K Tagset&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 15:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201155#M50218</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-07-13T15:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201156#M50219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2015 15:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201156#M50219</guid>
      <dc:creator>TashaBee</dc:creator>
      <dc:date>2015-07-13T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: How proc export to a particular row and column in Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201157#M50220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Libname + excel and change the cell via data step, just like it is a sas dataset ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 13:28:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-proc-export-to-a-particular-row-and-column-in-Excel/m-p/201157#M50220</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-07-14T13:28:59Z</dc:date>
    </item>
  </channel>
</rss>

