Hi, 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): proc export data=data.donor outfile=_dataout dbms=csv replace; run; %let _DATAOUT_MIME_TYPE=text/csv; %let _DATAOUT_NAME=donor.csv; This is the error I'm getting: ERROR: File DATA.DONOR.DATA does not exist. ERROR: Export unsuccessful. See SAS Log for details. 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.
... View more