BookmarkSubscribeRSS Feed
podarum
Quartz | Level 8

In SAS 9.4, I’m trying to use LIBNAME XLSX to read and write to Excel files. I tried to update a named range using SAS 9.4, but it doesn’t work. One of the blog (link provided below) says that “the XLSX engine does not support Excel named ranges

https://blogs.sas.com/content/sasdummy/2015/05/20/using-libname-xlsx-to-read-and-write-excel-files/

 

In SAS 9.3, I was able to update named range cells using the below code. I used “excel” engine to create a libref “AFIL” using LIBNAME statement. “Table_NamedRange” is a named range in the excel spreadsheet located in - "V:\Test\ABC.xlsx”. I was able to update the named range cells in the excel sheet with the data from the SAS table “work.AFILData” (code provided below).

 

Below is the code I used in SAS 9.3, is there an equivalent code for 9.4?

 

libname AFIL excel "V:\Test\ABC.xlsx”;

data AFIL.Table_NamedRange ;

      set work.AFILData;

Run;

 

How can I update a named Range cell in excel using SAS 9.4?

8 REPLIES 8
Tom
Super User Tom
Super User

It will help others to help you if you include the exact version of SAS, including maintenance release. 

   - Latest version as of Nov2017 is 9.4M5 .

Also operating system version and the release/version of EXCEL you are using.

podarum
Quartz | Level 8

It's Version : 6.1.7601 Service Pack 1 Build 7601

RW9
Diamond | Level 26 RW9
Diamond | Level 26

As far as I am aware they have not removed the libname excel engine from 9.4, so you can still use your original code.

podarum
Quartz | Level 8

This is the error I'm getting when executing the libname statement

 

ERROR: Connect: Class not registered

ERROR: Error in the LIBNAME statement.

Tom
Super User Tom
Super User

Usually that Class not registered error message is an indication that your SAS and OFFICE installations are using different numbers of bits (32 vs 64).  If you cannot update your OFFICE installation to match your SAS installation then you will need to use the SAS PC Files Server to make the connection between SAS and EXCEL.

 

http://support.sas.com/kb/54/413.html

podarum
Quartz | Level 8

In 9.3 I was using 64-bit and Excel was 32-bit, same as it is now..  when it worked

Reeza
Super User

Try PCFILES instead.

 

libname myfile pcfiles path='path to xlsx';

 

update code goes here.....

 

Ksharp
Super User

Can you use PROC IMPORT+noreplace + RANGE=' '  option to update ?

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 8 replies
  • 2542 views
  • 0 likes
  • 5 in conversation