<?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: I need help with writing a driver program in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139277#M28118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, Patrick! Could you please give me a link or where I can find that? I really appreciate your help &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Dec 2014 17:21:58 GMT</pubDate>
    <dc:creator>richardmgb</dc:creator>
    <dc:date>2014-12-08T17:21:58Z</dc:date>
    <item>
      <title>I need help with writing a driver program</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139275#M28116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have several sas programs that each output a dataset. I've written a driver program that will call all of them. Now I want to add on a potion that will output the datasets together in an excel file and each dataset to have a separate tab/sheet. Anybody know how I can do this? Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Dec 2014 22:44:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139275#M28116</guid>
      <dc:creator>richardmgb</dc:creator>
      <dc:date>2014-12-06T22:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: I need help with writing a driver program</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139276#M28117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With SAS 9.4 it could be as simple as in below code. With earlier versions you would need to use one of the other well documented and often discussed methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data libnames;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.vlibnam;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data members;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.vmember;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname test xlsx 'c:\test\text.xlsx';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test.libnames;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set libnames;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test.members;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set members;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname test clear; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Dec 2014 01:46:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139276#M28117</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-12-07T01:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: I need help with writing a driver program</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139277#M28118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, Patrick! Could you please give me a link or where I can find that? I really appreciate your help &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 17:21:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139277#M28118</guid>
      <dc:creator>richardmgb</dc:creator>
      <dc:date>2014-12-08T17:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: I need help with writing a driver program</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139278#M28119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can start here &lt;A href="http://blogs.sas.com/content/sasdummy/2012/02/11/export-excel-methods/" title="http://blogs.sas.com/content/sasdummy/2012/02/11/export-excel-methods/"&gt; How do I export from SAS to Excel files: Let me count the ways - The SAS Dummy&lt;/A&gt; and then once you've decided which technique is appropriate for you, you can look up more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I want to find something on the SAS support sites then I normally use Google with:&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; site:support.sas.com&lt;/STRONG&gt; &lt;EM&gt;search terms&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Or just here in this forum's search when I type in something like "&lt;EM&gt;write to excel tab&lt;/EM&gt;" I get several promising links back.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;IMG alt="Capture.PNG" class="jive-image" src="https://communities.sas.com/legacyfs/online/8278_Capture.PNG" /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 19:29:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-need-help-with-writing-a-driver-program/m-p/139278#M28119</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-12-08T19:29:24Z</dc:date>
    </item>
  </channel>
</rss>

