问题
I am trying to to use the proc export in SAS, and keep getting the same error:
ERROR: Export unsuccessful. See SAS Log for details.
NOTE: The SAS System stopped processing this step because of errors.
Error creating XLSX file -> It is either not an Excel spreadsheet or it is damaged. Error code=8000101D Requested Output File is Invalid
sadly, I can't understand the meaning of the error
PROC EXPORT DATA=work.PANEL_SOFI
OUTFILE= "c:\\user\eyal\work.new_panel.xlsx"
DBMS=xlsx REPLACE ;
SHEET="detailed" ;
RUN;
回答1:
You have no permission to write in this folder. I've just tried to set "Deny" permission and execute this proc. As result there was same one error and same one note like in question.
Or excel file was opened when you try to execute proc export
.
来源:https://stackoverflow.com/questions/58909548/sas-proc-export-errors