<?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: Export a dataset to multiple CSV files in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134617#M260930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks for the quick response. I'm not a truly specialist using sas macros, so I apologize in advanced. I used your code and replaced with the proc export. The code exports indeed a CSV file but only one, and the name is "test_&amp;amp;C1_value._out.csv". It doesn't seem that it's sending the parameter to filter the table and "export by". Can you pls help me? Below is the code that I'm using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc SQL Noprint ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create table control as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct C1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have;&lt;/P&gt;&lt;P&gt;Quit ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Macro WriteCSV (C1_value) ;&lt;/P&gt;&lt;P&gt;Filename &amp;amp;C1_value._out 'C:\&amp;amp;C1_value._output.csv ' ;&lt;/P&gt;&lt;P&gt;Data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set have (where = (C1 = "&amp;amp;C1_Value")) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file &amp;amp;C1_value._out ;&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;proc export data=have replace&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; outfile='c:\test_&amp;amp;C1_value._out.csv'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; dbms=csv;&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;run ;&lt;/P&gt;&lt;P&gt;%Mend ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _Null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length exec_code $ 64 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set control ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = '%WriteCSV (#) ;' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = TRANSTRN(exec_code,'#',C1) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call execute (exec_code) ;&lt;/P&gt;&lt;P&gt;Run ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2014 03:33:18 GMT</pubDate>
    <dc:creator>Stu1979</dc:creator>
    <dc:date>2014-03-07T03:33:18Z</dc:date>
    <item>
      <title>Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134614#M260927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need your help in a proc export procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dataset with several columns. I need to export that table into as many CSV files as distinct values in the first column&amp;nbsp; (let's call it "C1"), and name that CSV file something like "output_" and then the value of the C1. Basically almost a proc "export by".&lt;/P&gt;&lt;P&gt;Can anyone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks&lt;/P&gt;&lt;P&gt;Stu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 06:12:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134614#M260927</guid>
      <dc:creator>Stu1979</dc:creator>
      <dc:date>2014-03-06T06:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134615#M260928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc export will not allow you to do what you want but you can achieve the result by selecting distinct values of C1 into a control table and then using the values to create suitable filenames to output to.&amp;nbsp; You can use proc export with a subset of your data (eg 9 rows) to create the code - throw away the output file but use recall to bring back the data _Null_ statements used to create a single file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution will go something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc SQL Noprint ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create table control as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct C1 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have &lt;/P&gt;&lt;P&gt;Quit ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Macro WriteCSV (C1_value) ;&lt;/P&gt;&lt;P&gt;Filename &amp;amp;C1_value._out 'C:\temp\&amp;amp;C1_value._output.csv ' ;&lt;/P&gt;&lt;P&gt;Data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set have (where = (C1 = "&amp;amp;C1_Value")) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file &amp;amp;C1_value._out ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt; insert code from proc expost recall &amp;gt;&lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;%Mend ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _Null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length exec_code $ 64 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set control ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = '%WriteCSV (#) ;' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = TRANSTRN(exec_code,'#',C1) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call execute (exec_code) ;&lt;/P&gt;&lt;P&gt;Run ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(untested code)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 07:36:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134615#M260928</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2014-03-06T07:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134616#M260929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi have a look at the excellent blog post &lt;A href="http://blogs.sas.com/content/sasdummy/2012/03/20/sas-program-by-processing/" title="http://blogs.sas.com/content/sasdummy/2012/03/20/sas-program-by-processing/"&gt; Implement BY processing for your entire SAS program - The SAS Dummy&lt;/A&gt; by &lt;A __default_attr="230995" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt; it will help you to do what you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 09:46:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134616#M260929</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2014-03-06T09:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134617#M260930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks for the quick response. I'm not a truly specialist using sas macros, so I apologize in advanced. I used your code and replaced with the proc export. The code exports indeed a CSV file but only one, and the name is "test_&amp;amp;C1_value._out.csv". It doesn't seem that it's sending the parameter to filter the table and "export by". Can you pls help me? Below is the code that I'm using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc SQL Noprint ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create table control as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct C1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have;&lt;/P&gt;&lt;P&gt;Quit ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Macro WriteCSV (C1_value) ;&lt;/P&gt;&lt;P&gt;Filename &amp;amp;C1_value._out 'C:\&amp;amp;C1_value._output.csv ' ;&lt;/P&gt;&lt;P&gt;Data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set have (where = (C1 = "&amp;amp;C1_Value")) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file &amp;amp;C1_value._out ;&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;proc export data=have replace&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; outfile='c:\test_&amp;amp;C1_value._out.csv'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; dbms=csv;&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;run ;&lt;/P&gt;&lt;P&gt;%Mend ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _Null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length exec_code $ 64 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set control ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = '%WriteCSV (#) ;' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = TRANSTRN(exec_code,'#',C1) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call execute (exec_code) ;&lt;/P&gt;&lt;P&gt;Run ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 03:33:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134617#M260930</guid>
      <dc:creator>Stu1979</dc:creator>
      <dc:date>2014-03-07T03:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134618#M260931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look up the filevar= option instead in a data step to dynamically change the output file. &lt;/P&gt;&lt;P&gt;No macros, no mess, no fuss.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000171874.htm" title="https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000171874.htm"&gt;SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of usage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="177368" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 03:50:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134618#M260931</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-07T03:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134619#M260932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stu&lt;/P&gt;&lt;P&gt;I can't validate your code (no SAS handy) but I note one source of your problem which I confess I perpetrated:&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Macro variable swill not resolve in single quotes.&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Replace with double quotes &lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Filename &amp;amp;C1_value._out "C:\&amp;amp;C1_value._output.csv" ; (now redundant since you do not use the filename)&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;and&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; outfile="c:\test_&amp;amp;C1_value._out.csv"&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;But do not replace in the expression&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec_code = '%WriteCSV (#) ;' ;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;because the intention is &lt;STRONG&gt;not&lt;/STRONG&gt; to resolve during the datastep.&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I was aware of the filevar option and by processing but thought my approach would be simplest to implement. I think you need a macro at some point unless you know in advance all the values C1 can take and that number does not change.&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 04:38:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134619#M260932</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2014-03-07T04:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134620#M260933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks to all answers! &lt;/P&gt;&lt;P&gt;Actually the easiest solution was using the filevar option. Clean &amp;amp; easy code. Only issue is that it does not replace existing files with same name (it appends). To overcome that problem I just created a .bat file to delete all files from that folder a few minutes before the sas script runs. Workaround but efficient so far...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2014 00:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134620#M260933</guid>
      <dc:creator>Stu1979</dc:creator>
      <dc:date>2014-03-08T00:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to multiple CSV files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134621#M260934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should replace the files, unless you add the MOD option to the FILE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will not remove existing files that are not present in the current data.&amp;nbsp; So if you are generating the filename based on variable NAME in the dataset and previously you ran it when there were records with NAME='fred' and this time you run it with data where there is no values of NAME='fred' then the file generated for fred before will NOT be erased.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2014 01:26:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-multiple-CSV-files/m-p/134621#M260934</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-03-08T01:26:33Z</dc:date>
    </item>
  </channel>
</rss>

