sas proc export errors

主宰稳场 提交于 2021-01-27 17:04:32

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!