<?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: Exporting SAS dataset into specific cells in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401698#M278765</link>
    <description>It has been a long dag of frustration. I misread your quote as if it were for libname, not DDE.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for the help RW9. Ill dig deeper into your link.&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Oct 2017 11:01:27 GMT</pubDate>
    <dc:creator>Shawnty</dc:creator>
    <dc:date>2017-10-06T11:01:27Z</dc:date>
    <item>
      <title>Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401663#M278756</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;&lt;BR /&gt;Im working with SAS 9.2 and i need&amp;nbsp;to export a big dataset into a structured MASTER excel template&amp;nbsp; with a huge amount of rows and columns with a given structure.&lt;BR /&gt;&lt;BR /&gt;My first approach was to use DDE which worked great as i could allocate to specific cells. But for some reason the DDE crashes on some specific cells for an unknown reason. Therefore this method can not be used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The excel template itself is structured with a lot of formulas and formats and as such i can not import the document to SAS - input the data needed and be rewrite the document/sheets. I need to write to specific cells just as the DDE approach.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;To my knowledge this can be done through libname excel and write to a named range. Again, this can not be done either as im writing to a MASTER where we can not change the data itself.&lt;BR /&gt;&lt;BR /&gt;So to summarize my question. Is there a method in SAS 9.2 such as DDE that can write data from a SAS dataset to a specific cell /range of cells in excel without overwriting everything around the specific cells or including more formats in the MASTER such as a named range? If you happen to have such a method, please throw in an example as well as im new to SAS!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks on advance!&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 09:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401663#M278756</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T09:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401666#M278757</link>
      <description>&lt;P&gt;Here is an example of a DDE code which worked out well until EXCEL crash &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data rea_num;&lt;BR /&gt;input a b c d e;&lt;BR /&gt;datalines;&lt;BR /&gt;0.01 0.001 0.25252 10 150&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;filename out dde "excel|CSV_CR_REA!r2c1:r2c5";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set rea_num;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;file out;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; format a PERCENT8.2&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; b PERCENT10.2&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; c PERCENT5.2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;put a '09'x b '09'x c '09'x d '09'x e '09'x;&lt;BR /&gt;&lt;BR /&gt;run;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 09:43:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401666#M278757</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T09:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401670#M278758</link>
      <description>&lt;P&gt;There is this:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" target="_blank"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However if you are using Excel that much then I wouldn't bother with SAS at all.&amp;nbsp; Export your data as CSV, then write some VBA code - doesn't have to be in the same Excel doc, just code which loads your master, loads the CSV, and then maps the data into the main Spreadsheet.&amp;nbsp; Its pretty straight forward but outside the realm of this forum.&lt;/P&gt;
&lt;P&gt;Personally I would avoid Excel as much as possible, really poor data format.&amp;nbsp; DDE is ancient and may not support most things.&lt;/P&gt;
&lt;P&gt;This sentence:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;To my knowledge this can be done through libname excel and write to a named range. Again, this can not be done either as im writing to a MASTER where we can not change the data itself.&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;I do not know what you mean here, if you can't write to the Excel file, then there is no method of getting data in there using any technology.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 09:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401670#M278758</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-06T09:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401686#M278759</link>
      <description>&lt;P&gt;Hi RW9,&lt;BR /&gt;&lt;BR /&gt;Ill look into proc export. Wasn't aware it could handle specific ranges. This report is made once every 2 years and as part of this years project i'm creating automatic population for the Template. It's also a requirement from external parties (regulations) and such can't be avoided.&lt;BR /&gt;&lt;BR /&gt;As for the quote: What i meant is: from what i've seen libname excel can do two things:&lt;BR /&gt;Write to a excel document/sheet.&lt;/P&gt;&lt;P&gt;Write to a named range.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where creating a named range requires me to format the master, and write to sheet would write over all the formats included in the master. This is however just my understanding of the module libname excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ive considered the CSV... Can be created in a similar fashion as DDE but as for now ill try to avoid VBA due to keeping the code simple and constricted to one language.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for the advice, J&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 10:39:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401686#M278759</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T10:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401689#M278760</link>
      <description>&lt;P&gt;The link I posted isn't proc export, proc export is not what you want.&amp;nbsp; I don't believe there is a direct export method in the way you want.&amp;nbsp; Export to CSV and write VBA (which is what all Office apps are in the background) and do it that way.&amp;nbsp; As for keeping the code constricted to one language, you are constricted to use Excel, VBA is Excel, therefore the constriction is on using Excel in the first place.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 10:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401689#M278760</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-06T10:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401691#M278761</link>
      <description>&lt;P&gt;Oh okay, ill dig deeper into it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;As for the language. What i meant is i dont want others to be required to learn SAS and VBA to populate the template, rather just looked at my code as a benchmark and change where requires need be.&lt;BR /&gt;&lt;BR /&gt;I found this written by you earlier:&lt;BR /&gt;&lt;BR /&gt;"&lt;/P&gt;&lt;DIV class="lia-message-heading lia-component-message-header"&gt;&lt;DIV class="lia-quilt-row lia-quilt-row-standard"&gt;&lt;DIV class="lia-quilt-column lia-quilt-column-20 lia-quilt-column-left"&gt;&lt;DIV class="lia-quilt-column-alley lia-quilt-column-alley-left"&gt;&lt;DIV class="lia-message-subject"&gt;&lt;P&gt;First recommendation, don't use proc import/export - they are guessing procedures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;&lt;BR /&gt;Would you mind expanding what you meant by setting cell values? Cause i was not aware that was possible as i wrote earlier.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 06 Oct 2017 10:48:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401691#M278761</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T10:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401693#M278762</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/161756"&gt;@Shawnty&lt;/a&gt; wrote:&lt;BR /&gt;.... and constricted to one language.&amp;nbsp;&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you want to achieve&amp;nbsp; that, can the crappy Excel and do all your logic in SAS. No sense riding a kids tricycle when you can have a Hummer.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 10:49:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401693#M278762</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-06T10:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401694#M278763</link>
      <description>Hi KurtBremser,&lt;BR /&gt;&lt;BR /&gt;Not sure what you meant by that.</description>
      <pubDate>Fri, 06 Oct 2017 10:50:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401694#M278763</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T10:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401697#M278764</link>
      <description>&lt;P&gt;DDE is a M$ technology to interact with Office files, its is 20years old now and not supported.&amp;nbsp; Its possible that it can write a value into a cell, however by your own conditions you would need to know how Excel works, what the language is for DDE etc. which is a language in itself (and what my linked article should show).&amp;nbsp; From my side, I do not support DDE, its far too old, doesn't work half the time.&amp;nbsp; Try the given macro in that link.&amp;nbsp; Other than that I don't believe there is a way from SAS - a strongly structured data based language - to interact directly with an unstructured file format such as Excel with using one of the linking tools such as VBA or DDE.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 10:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401697#M278764</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-06T10:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401698#M278765</link>
      <description>It has been a long dag of frustration. I misread your quote as if it were for libname, not DDE.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for the help RW9. Ill dig deeper into your link.&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Oct 2017 11:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401698#M278765</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T11:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401702#M278766</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/161756"&gt;@Shawnty&lt;/a&gt; wrote:&lt;BR /&gt;Hi KurtBremser,&lt;BR /&gt;&lt;BR /&gt;Not sure what you meant by that.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Simply, Excel is not a sensible tool for doing business intelligence. It lacks features for documentability, allows data errors without complaining, has natural limits on data size, and on and on and on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I personally never employ Excel for any mission-critical task or for data that exceeds a few screens in size (because you will loose control one day). We have SAS for that. Every step in the analytics chain is documented by logs, program changes are kept in a source control system, and so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 11:44:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401702#M278766</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-06T11:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401754#M278767</link>
      <description>&lt;P&gt;Hi RW9,&lt;BR /&gt;&lt;BR /&gt;Dont know how to contact you other than continuing this post.&lt;BR /&gt;&lt;BR /&gt;Ive tried the macro you linked to me but it does not seem to be working for me on SAS 9.2.&lt;BR /&gt;&lt;BR /&gt;Ive downloaded the macro and ran the first examples, but immediately tries to create a work.T_e_m_p instead of the outfile given. And if ive understood this correctly, the code does so incase something goes wrong.&lt;BR /&gt;&lt;BR /&gt;Have you encountered this problem yourself, and if you havent, is there any chance you could run the macro example 1 or 2 and see if it creates the file as it should?&lt;BR /&gt;&lt;BR /&gt;/J&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 13:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401754#M278767</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T13:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401764#M278768</link>
      <description>&lt;P&gt;Yes, just ran the first one on my machine (9.4) and it doesn't produce any file.&amp;nbsp; Unfortunately it is not code from me, though there is a contact in the PDF.&amp;nbsp; I think it really highlights how much of a pain using Excel is, that code uses DDE, but also create a VB script as well behind the scene to do various things.&amp;nbsp; As I mention before, if after really throwing the toys out of the cradle I ever have use Excel, I would just default to using VBA.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 13:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401764#M278768</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-06T13:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401766#M278769</link>
      <description>Okay, thank you for confirming the problem. VBA is something ive avoided like the plague. Guess it's time to go in head first and learn about VBA.&lt;BR /&gt;&lt;BR /&gt;/J</description>
      <pubDate>Fri, 06 Oct 2017 13:55:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401766#M278769</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T13:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401964#M278770</link>
      <description>&lt;P&gt;As one of the co-authors of&amp;nbsp;&lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" target="_blank"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt; (along with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19924"&gt;@FriedEgg&lt;/a&gt;&amp;nbsp;), I can assure you that the macro doesn't use DDE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will only work on machines that can both run vb script and system commands (like x).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, if you're running it from a server environment, the server has to be able to run vb script and system commands, and the server_path parameter has to be included (i.e.,&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;a path, on the server, for which you have write access (e.g., S:\temp) )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 21:35:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401964#M278770</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-10-06T21:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401968#M278771</link>
      <description>&lt;P&gt;Hi art297,&lt;BR /&gt;&lt;BR /&gt;Thank you very much for responding.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Im afraid my knowledge of server/systems are a bit weak. Would you mind explaining a bit deeper o what you mean by able to run system commands and server environment?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks on advance, J&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 21:40:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401968#M278771</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T21:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401978#M278772</link>
      <description>&lt;P&gt;They're two different issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the server question, when you run SAS is it running a copy of SAS that exists on your own computer, or one that exists on another machine (i..e, a server).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's the latter, the macro will only work if that other machine (the server) is windows based (i.e., can run windows programs and languages like vb script) and notepad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And, if it is running on a server, the macro has a parameter called system_path. When one calls the macro in such an environment, the system+path parameter has to have a value of some directory on the server for which you have write access (i.e., can write and save files to).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the system commands, some SAS interfaces (like EG) don't let run issue system commands (like the x command or call system, i.e., commands that let you run external programs (like notepad, excel or word) directly from SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 21:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401978#M278772</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-10-06T21:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401981#M278773</link>
      <description>Interesting, thanks for making it clear. I wont be back to work until Monday. I will have a look at it once im back. Again, thank you!</description>
      <pubDate>Fri, 06 Oct 2017 22:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/401981#M278773</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-06T22:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/403663#M278774</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/161756"&gt;@Shawnty&lt;/a&gt;: Did you get the macro&amp;nbsp;to work on your server?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 19:31:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/403663#M278774</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-10-12T19:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting SAS dataset into specific cells</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/403720#M278775</link>
      <description>&lt;P&gt;Hi Art297,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;We decided to go with VBA instead of SAS. So there is no need for it.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 21:55:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-SAS-dataset-into-specific-cells/m-p/403720#M278775</guid>
      <dc:creator>Shawnty</dc:creator>
      <dc:date>2017-10-12T21:55:35Z</dc:date>
    </item>
  </channel>
</rss>

