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.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1263 views
  • 0 likes
  • 3 in conversation