<?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: Converting SAS files to CSV in university Edition - CSV showing up blank in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597051#M16073</link>
    <description>&lt;P&gt;You do not have a file in that folder named donor.sas7bdat.&lt;/P&gt;
&lt;P&gt;If you think you have such a file double check the location (is it really in the directory you used?) and the file name (perhaps it is donors.sas7bdat? Perhaps the filename a blank in the beginning or end that you are no seeing).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The filename (donor.sas7bdat) &lt;STRONG&gt;must&lt;/STRONG&gt; be in all &lt;STRONG&gt;lowercase&lt;/STRONG&gt; letters or SAS will not see it.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 19:23:36 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-10-16T19:23:36Z</dc:date>
    <item>
      <title>Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597020#M16058</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm very unfamiliar with SAS but have been working with the University Edition. I have a CD file of .sas7bdat files that I need to convert into CSV files. My issue is that when the CSV file is generated, I'm getting an error in the SAS log and my CSV file (which opens in excel) does not have anything in it. Data is the name of the library I created to hold my data (but I'm not even sure if I did that correctly) and this is the code I'm running (donor is the name of my data file I'm trying to convert):&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc export data=data.donor&lt;BR /&gt;            outfile=_dataout&lt;BR /&gt;            dbms=csv replace;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%let _DATAOUT_MIME_TYPE=text/csv;&lt;BR /&gt;%let _DATAOUT_NAME=donor.csv;&lt;/PRE&gt;&lt;P&gt;This is the error I'm getting:&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;ERROR: File DATA.DONOR.DATA does not exist.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Export unsuccessful. See SAS Log for details.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Again, I know almost nothing about SAS and how it works so I apologize if I'm missing any information needed to help answer this question, but any help would very much be appreciated.&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Oct 2019 18:24:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597020#M16058</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T18:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597022#M16059</link>
      <description>What is the value for _dataout?&lt;BR /&gt;&lt;BR /&gt;Show your full code please.</description>
      <pubDate>Wed, 16 Oct 2019 18:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597022#M16059</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T18:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597023#M16060</link>
      <description>You can also just use the export task and it will generate the code for you, assuming you've assigned a libname correctly and can see your data sets. You can also just right click the file and select export and it will export the file.</description>
      <pubDate>Wed, 16 Oct 2019 18:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597023#M16060</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T18:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597025#M16061</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is my full code. I went to the "snippets" section and chose "generate CSV file" which gives me this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc export data=sashelp.cars&lt;BR /&gt;outfile=_dataout&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;%let _DATAOUT_MIME_TYPE=text/csv;&lt;BR /&gt;%let _DATAOUT_NAME=cars.csv;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I posted in my original question is what i changed it to so I could try and convert my file. Again, I seriously don't know anything about SAS and I'm trying to do this for a professor who also does not know SAS so thank you for your help!!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 18:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597025#M16061</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T18:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597027#M16062</link>
      <description>Where did you create the library? Did you put the files in the myfolder you created?&lt;BR /&gt;&lt;BR /&gt;What you need to do:&lt;BR /&gt;&lt;BR /&gt;1. Place SAS files in myfolders (created at setup)&lt;BR /&gt;2. Assign a libname to that location, right click myfolders on the Servers FIles and FOlders pane to get the list of files&lt;BR /&gt;3. Then right click one of the files in the LIbrary pane and select Export. That will give you the code you need. Or use a snippet at that point. I suspect your other issues are affecting your export. &lt;BR /&gt;&lt;BR /&gt;Have you verified that you can even see the data sets and that they're valid?</description>
      <pubDate>Wed, 16 Oct 2019 18:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597027#M16062</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T18:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597032#M16063</link>
      <description>&lt;P&gt;So yes, my data is in the "myfolders" folder I created at set up. Should I be able to expand the library when I'm in the library tab to see my data?&amp;nbsp; Even when i try to recreate the library I'm not able to open the files or expand under the library I created. I'm able to open the files in SAS so i can see that they're valid and contain data, so I know thats ok. I just think I'm setting up my library wrong or something.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 18:53:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597032#M16063</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T18:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597035#M16065</link>
      <description>Show your full code - ie the libname statement and the log in this case that would have created the library with your data.</description>
      <pubDate>Wed, 16 Oct 2019 18:55:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597035#M16065</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T18:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597036#M16066</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mydata '/folders/myfolders/';


proc export data=myData.data1 outfile = "/folders/myfolders/data1.csv" dbms=csv replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That's usually all you need then run the PROC EXPORT for each file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change the DATA = to be your data set name and the name in the outfile portion as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/293757"&gt;@bhanl004&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;So yes, my data is in the "myfolders" folder I created at set up. Should I be able to expand the library when I'm in the library tab to see my data?&amp;nbsp; Even when i try to recreate the library I'm not able to open the files or expand under the library I created. I'm able to open the files in SAS so i can see that they're valid and contain data, so I know thats ok. I just think I'm setting up my library wrong or something.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 18:56:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597036#M16066</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T18:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597039#M16068</link>
      <description>&lt;PRE&gt;libname data "/folders/myfolders";&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc export data=donor.sas7bdat&lt;BR /&gt;            outfile='_donor.csv'&lt;BR /&gt;            dbms=csv replace;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%let _DATAOUT_MIME_TYPE=text/csv;&lt;BR /&gt;%let _DATAOUT_NAME=donor.csv;&lt;/PRE&gt;&lt;P&gt;The lib statement runs successfully, but I still cannot expand it out when I'm under libraries so I cant select the export option.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:00:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597039#M16068</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T19:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597041#M16069</link>
      <description>Show the log.</description>
      <pubDate>Wed, 16 Oct 2019 19:02:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597041#M16069</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T19:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597042#M16070</link>
      <description>&lt;DIV class="sasSource"&gt;this is my log: (sorry, I know this is all probably very simple but having never worked with SAS I just have no idea whats going on, I appreciate your help!!)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname data "/folders/myfolders";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref DATA refers to the same physical library as MYDATA.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref DATA was successfully assigned as follows:&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Engine: V9&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Physical Name: /folders/myfolders&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 proc export data=donor.sas7bdat&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 outfile='_donor.csv'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 dbms=csv replace;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;WORK.PARMS.PARMS.SLIST.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ERROR: Libref DONOR is not assigned.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Export unsuccessful. See SAS Log for details.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 %let _DATAOUT_MIME_TYPE=text/csv;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 %let _DATAOUT_NAME=donor.csv;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597042#M16070</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T19:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597044#M16071</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/293757"&gt;@bhanl004&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;libname data "/folders/myfolders";&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc export data=donor.sas7bdat&lt;BR /&gt;            outfile='_donor.csv'&lt;BR /&gt;            dbms=csv replace;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%let _DATAOUT_MIME_TYPE=text/csv;&lt;BR /&gt;%let _DATAOUT_NAME=donor.csv;&lt;/PRE&gt;
&lt;P&gt;The lib statement runs successfully, but I still cannot expand it out when I'm under libraries so I cant select the export option.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You created a libref of DATA, but you don't use it.&lt;/P&gt;
&lt;P&gt;Instead you told PROC EXPORT to read the dataset named SAS7BAT from the libref named DONOR.&lt;/P&gt;
&lt;P&gt;If you have a file named donor.sas7bdat in the folder you pointer DATA at then you can use either&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data=data.donor&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;in your PROC EXPORT statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or just skip the libname statement and use:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data='/folders/myfolders/donor'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data='/folders/myfolders/donor.sas7bdat'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that if the file is actually named DONOR.sas7bdat or Donor.sas7bdat then SAS will not be able to see it. The name of the file must be in all lowercase because SAS University Edition is running on a Unix machine (virtual) and Unix treats the case of the letters in filenames as significant.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597044#M16071</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-16T19:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597047#M16072</link>
      <description>&lt;P&gt;So when I run that, I'm still getting the same error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname data "/folders/myfolders";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc export data=DATA.donor&lt;BR /&gt;outfile='_donor.csv'&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;%let _DATAOUT_MIME_TYPE=text/csv;&lt;BR /&gt;%let _DATAOUT_NAME=donor.csv;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname data "/folders/myfolders";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref DATA refers to the same physical library as MYDATA.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref DATA was successfully assigned as follows:&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Engine: V9&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Physical Name: /folders/myfolders&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 proc export data=DATA.donor&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 outfile='_donor.csv'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 dbms=csv replace;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;WORK.PARMS.PARMS.SLIST.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ERROR: File DATA.DONOR.DATA does not exist.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Export unsuccessful. See SAS Log for details.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 %let _DATAOUT_MIME_TYPE=text/csv;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 %let _DATAOUT_NAME=donor.csv;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597047#M16072</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T19:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597051#M16073</link>
      <description>&lt;P&gt;You do not have a file in that folder named donor.sas7bdat.&lt;/P&gt;
&lt;P&gt;If you think you have such a file double check the location (is it really in the directory you used?) and the file name (perhaps it is donors.sas7bdat? Perhaps the filename a blank in the beginning or end that you are no seeing).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The filename (donor.sas7bdat) &lt;STRONG&gt;must&lt;/STRONG&gt; be in all &lt;STRONG&gt;lowercase&lt;/STRONG&gt; letters or SAS will not see it.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:23:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597051#M16073</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-16T19:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597056#M16074</link>
      <description>&lt;P&gt;Okay, so you helped me figure out the issue with my name/library. and now my code is running without issue, but my CSV file is still showing up blank with no values when I open it. I know there is data in the files I'm converting, so I'm not sure why this is happening.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;p.s. - thank you for the help!!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:29:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597056#M16074</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T19:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597060#M16075</link>
      <description>Please try the code I posted instead of the code you're running and post the log.</description>
      <pubDate>Wed, 16 Oct 2019 19:36:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597060#M16075</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T19:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597061#M16076</link>
      <description>&lt;P&gt;Make sure you don't have the same issue with locating the output file as you had with finding the input dataset. Perhaps you are looking at some older version instead of the one made the last time.&amp;nbsp; Also make sure you are not overwriting it with some other code that runs later.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that the code you posted was using a filename without any path. That is probably not going to work in SAS UE as the normal current working directory will be pointing to a location where you will not have write access.&amp;nbsp; But you should get an error in that case.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:36:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597061#M16076</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-16T19:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597064#M16078</link>
      <description>&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname mydata '/folders/myfolders/';&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref MYDATA refers to the same physical library as MYFOLDER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Libref MYDATA was successfully assigned as follows:&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Engine: V9&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Physical Name: /folders/myfolders&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 proc export data=mydata.donor outfile = "/folders/myfolders/data1.csv" dbms=csv replace;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;WORK.PARMS.PARMS.SLIST.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;ERROR: File MYDATA.DONOR.DATA does not exist.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Export unsuccessful. See SAS Log for details.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597064#M16078</guid>
      <dc:creator>bhanl004</dc:creator>
      <dc:date>2019-10-16T19:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597065#M16079</link>
      <description>&lt;P&gt;That is the same error as before. There is no data to export.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597065#M16079</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-16T19:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting SAS files to CSV in university Edition - CSV showing up blank</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597079#M16080</link>
      <description>&lt;P&gt;Make sure that the physical filename of the dataset file is all lowercase, or SAS won't recognize it.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 20:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Converting-SAS-files-to-CSV-in-university-Edition-CSV-showing-up/m-p/597079#M16080</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-16T20:00:07Z</dc:date>
    </item>
  </channel>
</rss>

