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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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