各位大神好,我在用SAS輸出到excel的時(shí)候遇到一個(gè)問題導(dǎo)致沒有辦法輸出,log如下:
Can not replace sheet because it has existing formulas that reference other pages
奇怪的是我用PC SAS毫無問題,但是用SAS studio的時(shí)候就會(huì)有這個(gè)問題。輸出的那段程序如下,輸出的sheet覆蓋了excel里面當(dāng)前的sheet:
proc export data=output
outfile="&pace.&new_filename"
dbms=xlsx
replace label;
sheet="&sheet.";
run;