I've found some code that works great at importing a xlsx file from a URL. The code successfully creates a duplicate of the file onto my computer but when I try to import the file into SAS I get the following issue.
Could not find 'workbook' entry in xlsx file. rc=8014900E (-2146136050)
Requested Input File Is Invalid
ERROR: Import unsuccessful. See SAS Log for details.
If I open the file then save it SAS can import the file successfully. That isn't too big of an issue I would just prefer it be automated. I'm quite sure the file is an xlsx file as there is no prompt warning from excel when I open the file. I have also downloaded a third party program that recognized the file as an xlsx file.
Any suggestions?
filename cm1url HTTP "http://tti.tamu.edu/documents/ums/congestion-data/complete-data.xlsx";
data _null_;
n=-1;
infile cm1url recfm=s nbyte=n length=len;
input;
file "C:\temp\TestPROCtoNDC.xlsx" recfm=n;
put _infile_ $varying32767. len;
run;
proc import file='C:\temp\TestPROCtoNDC.xlsx' out=PCR_day
dbms=xlsx replace;
getnames=no;
run;
Maybe a stupid question, but what happens if you skip the copy part, and just try to import the file from where it is?
filename cm1url HTTP "http://tti.tamu.edu/documents/ums/congestion-data/complete-data.xlsx";
proc import file=cm1url out=PCR_day
dbms=xlsx replace;
getnames=no;
run;
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.