Thank you to all 3 of you for the quick replies! The crash is occurring both when I try to read Excel files from a network drive, and from my C: drive. I did not try the csv, but I did try DBMS=XLSX instead of DBMS=Excel, and XLSX worked. I will open a tech support ticket. I don't want to have to go rip out code in many of our production programs, especially since several of us on my team use those programs, not just me. And I don't necessarily want to replace code that worked fine for years, and suddenly stopped working on my pc. I have pasted my original code, that is crashing SAS, below. At least I know I can use xlsx if I can't get anything else working. PROC IMPORT OUT= WEBCASEXLS_202122 DATAFILE= "L:\BOUNCE\Data\CASEALL_Download_202122.xlsx" DBMS= EXCEL REPLACE; RANGE="CASEALL$"; GETNAMES=YES; MIXED=NO; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; RUN;
... View more