I'm trying to upload a local .xls
/.xlsx
file to SAS using Proc Upload
. Although the code seams to work and the file uploads, when i download it again to my desktop and open it... it fails as currupt!
rsubmit;
Proc Upload
infile="C:\Users\Admin\Desktop\Book1.xls"
outfile='Book1.xls';
run;
endrsubmit;
SAS Version: 9.3 64-bit MS Office: 2010 32-bit OS: Windows 7 64-bit
What i'm trying to acheive is... upload the file to the server, attach it to email and send and then delete is from the server.