BookmarkSubscribeRSS Feed
fbgeoff
Calcite | Level 5

Hi guys,

I am currently listening to a SAS tutorial and have been trying to follow up instructions on creating a practice file. The code I need to use is:

%let path=FILEPATH/ecprg193

libname orion "&path";

 

Where ecprg193 is the file which carries the work sheets. I correctly defined the Filename and used the code below to create my folder:

%let path=C:/Users/ndiku/Desktop/ecprg193

libname orion "&path";

 

After entering this, it gives me an error message.

 

Can anyone advice me on correcting the code? or where I went wrong?

Thanks

 

3 REPLIES 3
Reeza
Super User

Are you using SAS University Edition?

 

 

If so, see the help center on setting up. You need to create a shared drive ('/folders/myfolders') place the files in there and then you can use them in SAS.

http://support.sas.com/software/products/university-edition/faq/main.htm

 

If you're not using SAS UE, please post the error.

ballardw
Super User

Please post the error message text. Also, which version of SAS are you using.

 

There is a system option availabe in SAS 9.3 that needs to be set to create a file if the path does not already exist and in versions prior to 9.3 the the entire path must exist prior to use.

 

And as @Reeza said, University edition has additional requirements on where you can access files.

sumitsagar1
Calcite | Level 5

in the 1st line i think you missed semicolon ..you can write code in 2 ways 

1st :

=========

%let path=C:/Users/ndiku/Desktop/ecprg193;

libname orion "&path";

 

2nd Way :

libname orion 'C:/Users/ndiku/Desktop/ecprg193' ;

 

 

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 888 views
  • 0 likes
  • 4 in conversation