libname test pcfiles path=\\{your info here}\TEST.XLSX; (this has to be a different name else it is an error) proc export data=sashelp.cars outfile='\\{your info}\test.xlsx' dbms=xlsx; sheet=cars; (first dbms=xlsx log will tell you not created ..... overwritted .....) run; proc export data=sashelp.class outfile='\\{your info}\test7_delete.xlsx' dbms=excelcs; sheet=class ; (all other dbms=EXCELCS and it seems to work very well)????? run; proc export data=sashelp.classfit outfile='\\{your info}\test7_delete.xlsx' dbms=excelcs; sheet=classfit ; run; proc export data=sashelp.deskact outfile='\\{your info}\test7_delete.xlsx' dbms=excelcs; sheet=deskact ; run; libname test clear;
... View more