<?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: Batch convert (export) a set of SAS data files to Excel format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111414#M30892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps I should concisely restate the objective:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;User wants to convert all the SAS data files in folder XYZ into Excel format.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any number of files.&amp;nbsp; Whatever the file names.&amp;nbsp; Maintain file names, only changing the extension in created output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel this problem is pretty basic, in that many people around the globe would like to be able to easily do this.&amp;nbsp; When they do an Internet search for the answer..., I hope they will come upon this thread, and happily find the answer.&amp;nbsp; This all seems a lot more complicated than it should be.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Oct 2013 21:45:11 GMT</pubDate>
    <dc:creator>NKormanik</dc:creator>
    <dc:date>2013-10-16T21:45:11Z</dc:date>
    <item>
      <title>Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111398#M30876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my primary working folder are 1000 .sas7bdat data files.&lt;/P&gt;&lt;P&gt;C:\Downloads&amp;nbsp; which is also libref Nicholas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to batch convert these into Excel format.&amp;nbsp; Resulting converted/exported files should retain the filename, but have the .xls extension.&amp;nbsp; The converted files should be placed in the same primary working folder as the original files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is how I've been exporting single files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export data=nicholas.wxyz &lt;/P&gt;&lt;P&gt;outfile= "C:\Downloads\wxyz.xls"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;dbms=xls label replace;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;putnames=yes;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it can be done, would someone please help with the SAS code to accomplish it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much.&amp;nbsp; Your help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nicholas Kormanik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 00:13:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111398#M30876</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-12T00:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111399#M30877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some code like below should do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro export(inlib,intbl,outpath,outfile);&lt;BR /&gt;&amp;nbsp; proc export data=&amp;amp;inlib..&amp;amp;intbl&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile= "&amp;amp;outpath\&amp;amp;outfile..xls"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms=xls label replace;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; putnames=yes;&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&amp;nbsp; set sashelp.vstable (where=(libname='NICHOLAS' and prxmatch('/^_\d+ *$/',memname)&amp;gt;0));&lt;/P&gt;&lt;P&gt;&amp;nbsp; length cmd $ 1000;&lt;BR /&gt;&amp;nbsp; outpath='C:\Downloads';&lt;BR /&gt;&amp;nbsp; cmd=cats('%export(',libname,',',memname,',',outpath,',',substrn(memname,2),')');&lt;BR /&gt;&amp;nbsp; call execute(cmd);&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 01:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111399#M30877</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-12T01:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111400#M30878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for trying, Patrick.&amp;nbsp; I placed several test SAS data files into C:\Downloads and tried your code.&amp;nbsp; Unfortunately..., no go:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set SASHELP.VSTABLE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE (libname='Nicholas') and (PRXMATCH('/^_\d+ *$/', memname)&amp;gt;0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any further ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 04:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111400#M30878</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-12T04:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111401#M30879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicholas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've actually tested the code and it worked for me. If it's not working for you then your real data is different from what you've told us so far (eg. your source tables don't follow a naming pattern of 1 underscore and then at least 1 digit and no other characters).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below the full code I've used for testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname nicholas (work);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data nicholas._00001&amp;nbsp; nicholas._00003&amp;nbsp; nicholas._00005 nicholas._00x4;&lt;BR /&gt;&amp;nbsp; set sashelp.class;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro export(inlib,intbl,outpath,outfile);&lt;BR /&gt;&amp;nbsp; proc export data=&amp;amp;inlib..&amp;amp;intbl&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; outfile= "&amp;amp;outpath\&amp;amp;outfile..xls"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms=xls label replace;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; putnames=yes;&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&amp;nbsp; set sashelp.vstable (where=(libname='NICHOLAS' and prxmatch('/^_\d+ *$/',memname)&amp;gt;0));&lt;/P&gt;&lt;P&gt;&amp;nbsp; length cmd $ 1000;&lt;BR /&gt;&amp;nbsp; outpath='C:\Downloads';&lt;BR /&gt;&amp;nbsp; cmd=cats('%export(',libname,',',memname,',',outpath,',',substrn(memname,2),')');&lt;BR /&gt;&amp;nbsp; call execute(cmd);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname nicholas clear;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 08:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111401#M30879</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-12T08:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111402#M30880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps the problem I had was in the naming of the files.&amp;nbsp; The test files I used had different names from the example I gave at the outset.&amp;nbsp; Sorry for that confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was assuming in my original question that any filename would work with the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 08:47:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111402#M30880</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-12T08:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111403#M30881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way, if it wasn't clear..., the SAS data files are being held within the folder C:\Downloads&amp;nbsp; (which is also libref Nicholas).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be the same location I'd like to place the converted/exported files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the code you used in your reply, and indeed it worked fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could the code be generalized so that any SAS data filename would work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 09:00:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111403#M30881</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-12T09:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111404#M30882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All information you need is in sashelp.vstable. You simply change the where clause to select a different set of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And to never create duplicates I probably would use a naming convention for the excel files which includes the libref and the full table name, so something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cmd=cats('%export(',libname,',',memname,',',outpath,',',&lt;STRONG&gt;cats(libname,'_',memname)&lt;/STRONG&gt;,')');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To select all tables under library NICHOLAS:&lt;/P&gt;&lt;P&gt;set sashelp.vstable (where=(libname='NICHOLAS' and memtype='DATA'));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 09:40:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111404#M30882</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-12T09:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111405#M30883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmm.&amp;nbsp; Not quite, apparently:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Variable memtype is not on file SASHELP.VSTABLE.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 22:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111405#M30883</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-12T22:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111406#M30884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;VSTABLE and VTABLE are two different views.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;899&amp;nbsp; proc sql;&lt;/P&gt;&lt;P&gt;900&amp;nbsp; describe view sashelp.vstable;&lt;/P&gt;&lt;P&gt;NOTE: SQL view SASHELP.VSTABLE is defined as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select libname, memname&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from DICTIONARY.MEMBERS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where memtype = 'DATA'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by libname asc, memname asc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;901&amp;nbsp; describe view sashelp.vtable;&lt;/P&gt;&lt;P&gt;NOTE: SQL view SASHELP.VTABLE is defined as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from DICTIONARY.TABLES;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Oct 2013 00:10:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111406#M30884</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-10-13T00:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111407#M30885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom - should have checked. So Nicholas: No need for "memtype='DATA' " as VSTABLE only shows tables and nothing else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And: You are allowed to do some debugging your own if something doesn't work as posted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Oct 2013 09:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111407#M30885</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-13T09:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111408#M30886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fantastic.&amp;nbsp; It works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only minor problem is that the code causes a truncation of the first character of the filename.&amp;nbsp; I wonder if you can fix what's causing that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;_00001.sas7bdat ---&amp;gt; 00001.xls&lt;/P&gt;&lt;P&gt;data.sas7bdat ---&amp;gt; ata.xls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Oct 2013 19:44:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111408#M30886</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-13T19:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111409#M30887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Only minor problem is that the code causes a truncation of the first character of the filename."&lt;/P&gt;&lt;P&gt;That's what you've asked for (implicitly) in your original post with the sample data you've provided. It's a very easy code change to my original post - and then there is also a follow up post about the filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest you give it a go and try to apply this small change on your own. Let us know in case you get really stuck with it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 10:33:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111409#M30887</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-15T10:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111410#M30888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the original question I did say, "&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Resulting converted/exported files should retain the filename, but have the .xls extension.&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't a clue how to fix the truncation......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All Greek to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 19:23:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111410#M30888</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-15T19:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111411#M30889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="807506" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: It would be useful, at this point, if you post the full set of code that you are running.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 19:36:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111411#M30889</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-10-15T19:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111412#M30890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've updated/changed your initial post changing the table names. Originally they were something like "_1234" and you wanted the excel to be named "1234.xls".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is my assumption correct that you don't know how to write SAS code? As the change to the code already posted is really simple.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 07:51:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111412#M30890</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-10-16T07:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111413#M30891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, &lt;A __default_attr="12296" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt;, your assumption is correct.&amp;nbsp; I've looked over your code and can't see any easy way of solving the truncation issue.&amp;nbsp; So..., how is it done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 08:54:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111413#M30891</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-16T08:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111414#M30892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps I should concisely restate the objective:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;User wants to convert all the SAS data files in folder XYZ into Excel format.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any number of files.&amp;nbsp; Whatever the file names.&amp;nbsp; Maintain file names, only changing the extension in created output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel this problem is pretty basic, in that many people around the globe would like to be able to easily do this.&amp;nbsp; When they do an Internet search for the answer..., I hope they will come upon this thread, and happily find the answer.&amp;nbsp; This all seems a lot more complicated than it should be.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 21:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111414#M30892</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-16T21:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111415#M30893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It isn't complex, but you seem to want someone else to do the work rather than modify posted code.&lt;/P&gt;&lt;P&gt;People have asked you to repost the code you used and claim does not work and you have not, so why should anyone invest anymore time in a question that works for everyone else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 21:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111415#M30893</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-16T21:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111416#M30894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because I don't know how to do it.&amp;nbsp; I'm the one asking how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this point I'd like a clear path for others out there that search for the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 22:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111416#M30894</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-10-16T22:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Batch convert (export) a set of SAS data files to Excel format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111417#M30895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want code or instructions on how to solve the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 22:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Batch-convert-export-a-set-of-SAS-data-files-to-Excel-format/m-p/111417#M30895</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-10-16T22:35:04Z</dc:date>
    </item>
  </channel>
</rss>

