BookmarkSubscribeRSS Feed
SaintRegent
Calcite | Level 5
Hi there,

I am pretty new to SAS so this may be a daft query. I am working my way through some course material on EG and have been happily opening and maniupulating the supplied datasets in my own projects.

The problem is when I open one of the readymade supplied projects, the datasets in the project flow point to the WORK library e.g. WORK.MNTH8_2007.

The work library is essentially empty so I get an error when I try to open them.

I do have these datasets (e.g. MNTH8_2007) in a folder on my own drive but am unsure how to utilise them in this scenario.

Regards,

John
1 REPLY 1
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello Saint Regent,

You can simply copy the dataset to work library like this:
[pre]
libname my 'C:\MyLib';
data MNTH8_2007;
set my.MNTH8_2007;
run;
[/pre]
where C:\MyLib is a folder on your drive contaning the dataset.

Sincerely,
SPR

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 601 views
  • 0 likes
  • 2 in conversation