Thank you. Could you please walk me through this? I searched to try to figure it out by myself but I can't seem to be able to. I am trying to convert my SPSS file into CSV. Using what you suggested(test is what my SPSS file is named). When I got he errors below I tried adding the DBMS=csv but the same error shows up. What am I doing wrong? Thank you again. libname pr ' my computer location'; filename edited 'c:\temp\temp.csv' encoding='utf8' ; proc export data= 'test' outfile= edited 'Editedtest'; Run; filename edited 'c:\temp\temp.csv' encoding='utf8' ; NOTE: PROCEDURE EXPORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The SAS System stopped processing this step because of errors. 68 proc export data= test outfile= edited Editedtest; ---------- 202 ERROR 22-322: Syntax error, expecting one of the following: ;, DATA, DBLABEL, DBMS, DEBUG, FILE, LABEL, OUTFILE, OUTTABLE, REPLACE, TABLE, _DEBUG_. ERROR 202-322: The option or parameter is not recognized and will be ignored. 69 DBMS=csv; 70 Run;
... View more