The above code was working locally with the same file? What was exactly the code? Stange, that you can read an Excel file using a data step. What doeas "run local" mean? Do you have SAS installed on your (Windows?) desktop? Or you have only EG (so you were connected to a SAS server)? Is the server Windows? Do you have ACCESS to PC file on the server< If this is real Excel data (not csv), use ftp binary transfer: FILENAME TEST11 FTP 'mydata.xls' lrecl=256 binary CD='/EEXInterfaces/Data/' HOST='myhost' USER='anonymous' PASS='XXXX' ;
... View more