I always have to re-run my whole code to get to the point I previously stopped my work, since every time I try to open the dataset I saved on my permanent folder I get the following error:"ERROR:Unable to open the table WCB.RightData. WCB.RightData cannot be opened. Do you want to select a different table to open?" The weird thing is that if I do not close my syntax and I open the table on my permanent folder, it is there with the data. However, When I closed SAS and re-open SAS and import the data, I get the error above. Here is my code when I created the SAS dataset and saved on my permanent folder: LIBNAME WCB "\\Mac\Home\Desktop\WCB Data\Data analysis"; PROC IMPORT OUT= WCB.WCB20032014 DATAFILE= "\\Mac\Home\Desktop\WCB Data\Raw Data\SPSS Original files\Shoulders (2).sav" DBMS=SPSS REPLACE; RUN; By using the code above the SAS database is created and I can see the table with the data. However, when I close SAS and re-open it, every time I import the SAS dataset I created, I get the error above. Here is the code I used when I am trying to open the SAS dataset I created with the previously code: LIBNAME WCB "\\Mac\Home\Desktop\WCB Data\Data analysis"; The dataset is there, but I get the error I described previously and cannot see the information on the table. The dataset is empty. Any help would be greatly appreciated. Thanks! Anelise
... View more