Hi, We have Base SAS on a UNIX server and I am trying to run the code below fro SAS EG. It works fine with a local path on the PC for the outfile where PC files server is Installed. The below is also running fine if I also specify username and password, but I don't want to hard code my credentials in the code. Wanted to ask if there are any workarounds . I need to export to both excel and access from SAS EG. PROC EXPORT data=sashelp.cars dbms=excelcs outfile="\sharepoint Location\test_cars.xls" replace; sheet = Data; server="xx.xx.xx.xx" ; port=9621; run; PROC EXPORT DATA=sashelp.cars OUTTABLE="cars1" DBMS=ACCESSCS REPLACE ; DATABASE="\SharePoint location\test_cars.MDB"; SERVER="xx.xx.xx.xx" ; PORT=9621; RUN; Thanks, Praveena
... View more