Hi guys, I am attempting the case study on the Airports Claim data and my proc import step gives me an error that the physical file does not exist, and a direct upload does not work because the file is bigger than the default size. I have converted the file to a csv so far because I downloaded it as an xlsx file. here is my import code libname TSA "/folders/myshortcuts/EPG194/OUTPUT"; %let path=C:\Users\MALTEZ\Desktop; run; options validvarname=v7; proc import datafile="&path\TSAClaims2002_2017.csv" dbms=csv out=TSA.importedclaims replace; guessingrows=max; run; .please help
... View more