Greetings to the SAS Studio saviours out there! Hope someone can help out. I thought I was just starting to get the hang of SAS Studio but got stumped by something probably trivial but that I can't figure out!! I have used the following proc import code to import a dataset: proc import datafile="/folders/myfolders/myfile.CSV" OUT=myworkfile DBMS=CSV REPLACE; RUN; this code was in a program file containing other code but I only highlighted the code above and hit the run button, e.g. without running anything else. I had previously used the libname statement in that program file to create the library STUDYFILES. Trying to tidy things up, I created a separate program file to copy and paste the successful code into, but re-running the exact same code from the new program file, I don't get the output data tab and I discovered the file output to WEBWORK. the code I get when I get the output data is logged as follows: NOTE: WORK.myworkfile data set was successfully created. NOTE: The data set WORK.STUDYFILES has 879 observations and 12 variables. when I run the same code from the new program file I get the following log: USER.STUDYFILES data set was successfully created. NOTE: The data set USER.STUDYFILES has 879 observations and 12 variables. Can anyone explain what is happening? Is it to do with the fact that if there are two programs I am trying to use then they can't both output to work if the code is the same? Thanks in advance guys.
... View more