sas proc导出错误

sas proc导出错误,sas,export,proc,Sas,Export,Proc,我试图在SAS中使用proc export,并不断收到相同的错误: 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

我试图在SAS中使用proc export,并不断收到相同的错误:

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
遗憾的是,我无法理解这个错误的含义

PROC EXPORT DATA=work.PANEL_SOFI 
            OUTFILE= "c:\\user\eyal\work.new_panel.xlsx" 
            DBMS=xlsx REPLACE ;
            SHEET="detailed" ;
RUN;

您没有在此文件夹中写入的权限。我刚刚尝试设置“拒绝”权限并执行此过程。结果出现了同样的一个错误和同样的一个注释


或者excel文件在您尝试执行
proc export

时被删除,除了创建XLSX文件时出现的一条注释错误外,应该还有更多错误消息->它不是excel电子表格或已损坏。错误代码=8000101D请求的输出文件无效Google for 8000101D,您可以在此处找到解决方案:谢谢,但我已经这样做了。@Eyalmrom我想您没有在该文件夹中写入的权限。