I am a first time user to SAS. I managed to convert my .XPT files to .sas7bdat files in SAS Studio. I have 9 sas7bdat files under my sasuser.v94 folder. My problem is when...
1. I try to drag one of my folders to the window pane to the right
2. I receive an error that says File_Temp20.'BLOOD PRESSURE AND CHOLESTROL'n.DATA does not exist.
3. If I right click on the file and select OPEN, I get the same error
Please help, when I was converting the files over from .xpt to .sas7bdat and coping and pasting the code in Program 1, was the only time I saw data/results. Now I cant see anything.
Can you access the file, via code?
What happens if you run something like the following, putting in your path of course.
libname myLib 'path to folder with sas data sets';
proc datasets lib=myLib;quit;
@Nique wrote:
I am a first time user to SAS. I managed to convert my .XPT files to .sas7bdat files in SAS Studio. I have 9 sas7bdat files under my sasuser.v94 folder. My problem is when...
1. I try to drag one of my folders to the window pane to the right
2. I receive an error that says File_Temp20.'BLOOD PRESSURE AND CHOLESTROL'n.DATA does not exist.
3. If I right click on the file and select OPEN, I get the same error
Please help, when I was converting the files over from .xpt to .sas7bdat and coping and pasting the code in Program 1, was the only time I saw data/results. Now I cant see anything.
Hi Reeza thank you for your response. This is the response I received after going to program, under the Code Tab, and pasting your suggestion
libname myLib 'path to folder with sas data sets';
proc datasets lib=myLib;quit;
(I received this error below)
Error: Library MYLIB does not exist
@Nique wrote:
Hi Reeza thank you for your response. This is the response I received after going to program, under the Code Tab, and pasting your suggestion
libname myLib 'path to folder with sas data sets'; proc datasets lib=myLib;quit;
(I received this error below)
Error: Library MYLIB does not exist
Which means that the path does not exist in the context of your SAS session.
Possible reasons:
Tell us a little about your SAS setup. University Edition, On Demand for Academics, BI server, or single machine?
Thank you Kurt that makes sense, I can see that. I will try to retype it.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.