本文介绍了sas proc导出错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在SAS中使用proc导出,并不断收到相同的错误:
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;
推荐答案
您无权在此文件夹中写入.我刚刚尝试设置拒绝"权限并执行此proc.结果出现了相同的一个错误和相同的一个音符.
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.
或excel文件已已打开尝试执行 proc export
时.
Or excel file was opened when you try to execute proc export
.
这篇关于sas proc导出错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!