BookmarkSubscribeRSS Feed
mcnunes
Fluorite | Level 6

Hi,

 

I have an excel file that i want to import to SAS Guide and then export the same file in format sas7bdat for my pc folder.

 

I know how to import the file in excel, but i don´t know how to export this  with extension sas7bdat for my pc.

 

Thanks 

 

 

 

 

 

1 REPLY 1
Tom
Super User Tom
Super User

Not sure I follow this question. There is no need to "export" as SAS dataset from SAS. SAS datasets are the native format for SAS.

 

If you want to make the file 'mydata.sas7bdat' in the directory 'mydir' then you can either create a libref that points to that directory and use a two level name.

libname out 'mydir';
data out.mydata ;
  ....
run;

Or just put quotes around the physical name.

data 'mydir/mydata';
   ....
run;

Are you asking how to download a file from your SAS server to your PC?

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
  • 5497 views
  • 2 likes
  • 2 in conversation