BookmarkSubscribeRSS Feed
GeorgeSAS
Lapis Lazuli | Level 10

Hello,

 

I have SAS 9.4 64 bit installed.I want use an excel file in SAS with libname method, but this does not works:

 

 

LIBNAME mylib  "C:\Users\mike\abc.xlsx" ;

 

ERROR: Connect: Class not registered

ERROR: Error in the LIBNAME statement.

 

 

Please help.

 

Thanks!

 

2 REPLIES 2
LinusH
Tourmaline | Level 20
The key is the bitness of your office installation.
There have been a LOT of threads on the communities so I suggest you do a search and return if you still fail to do the connection.
Data never sleeps
Pamela_JSRCC
Quartz | Level 8

We just upgraded to 9.4 64-bits.  This is what I found that works:

 

/* Export */

%let xlsTempFile = &xlsPath.\temp.xlsx;

 

data _null_;

   fileref = 'tempfile';

   rc = filename(fileref, "&xlsTempFile");

   if rc = 0 and fExist(fileref) then

      rc = fDelete(fileref);

run;

 

*For SAS 64-bit ver 9.4;

*libname wkbk pcFiles path="&xlsTempFile"; * This looks good except that Excel cannot read the file;

libname wkbk xlsx "&xlsTempFile"; * This creates a file that Excel can read;

 

data wkbk.data;     * Create destination worksheet "data" within the Excel workbook;

  set sashelp.cars; * Write the dataset into the worksheet;

run;

libname wkbk clear; * Close the workbook;

 

/* Import */

libname wkbk pcFiles path="&xlsPath.\temp.xlsx"; * Open an existing Excel workbook

                                                   using 64-bit SAS ver 9.4;

data temp; * Create new dataset;

  set wkbk.'data$'n; * Read the "data" worksheet into the dataset;

run;

 

libname wkbk clear; * Close the Excel file;

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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