Hi All, I'm new to SAS and below is the code for creating new library and importing data to library from excel code libname mylib '/home/u61033161'; data employee; set mylib.employee; run; Response : 69 libname mylib '/home/u61033161'; NOTE: Libref MYLIB was successfully assigned as follows: Engine: V9 Physical Name: /home/u61033161 70 data employee; 71 set mylib.employee; ERROR: File MYLIB.EMPLOYEE.DATA does not exist. 72 run; even though the data is available in excel sheet i am getting the above error when i execute the code. can anyone guide me through.
... View more