Here's the cod: data work.newsalesemps; length First_Name $ 12 Last_Name $ 18 Job_Title $ 25; infile 'newsalesemps.csv'; input First_Name $ Last_Name $ Job_Title $ Salary; run; title 'New Sales Employees'; proc print data=work.newsalesemps; run; proc means data=work.newsalesemps; class Job_Title; var Salary; run; title; So the main error I'm getting here is that the physical file does not exist. I'm on SAS Enterprise Guide and so I've discovered that the program itself cannot access my comps C or D drive which makes downloading orion onto my comp no kind of a solution. I'm wondering if we need to even bother with the infile since it seems mainly to be used to reference a physical pathway on my actual computer. Am I looking at this the wrong way or have I missed something? Any help would be appreciated.
... View more