BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6


Hello everyone,

I have a problem to import an excel 2003(.xls) file with password  into SAS.

Suppose the file's full location and name is c:\temp\aaa.xls,,,, password is "abc"  ,,,,, and sheet's name is "sheet1".

Does anyone could tell me how to write SAS code to import this file?

I attached the excel file .password is "abc".

Thanks!

Mike

PROC IMPORT
OUT= need
DATAFILE= "c:\temp\aaa.xls"
DBMS=EXCEL REPLACE;

SHEET="sheet1$";

GETNAMES=YES;
MIXED=YES;
USEDATE=YES;
SCANTIME=YES;
SCANTEXT=YES;
password='abc';/*This part does  not work*/
RUN;

3 REPLIES 3
Mike_Davis
Fluorite | Level 6

I have searched this topic before post my question ,but I don't understand  well on that.

Thanks

Mike

Tom
Super User Tom
Super User

The issue is that SAS does not have a PASSWORD= option, so you need to use one of the work around methods mentioned in the thread linked by haikuo bian above.  Read the thread and the papers that are linked in that thread.

If you still have detailed questions then ask them.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1102 views
  • 0 likes
  • 3 in conversation