BookmarkSubscribeRSS Feed
mei1006
Calcite | Level 5

 Many thanks for the information. For my issue,  warning is caused by a character "≥ " in a xlsx file, when I use libname to convert it into SAS dataset. The original text in the xlsx file is"≥ 9 g/dL" and the imported text in my work sas file is " 9 g/dL".

Here is my code:

%let inxls=path/ final.xlsx;

libname inxls xlsx "&inxls";

 

proc datasets lib=inxls nolist;

modify PDANDAI / CORRECTENCODING='utf-8';

quit;

Here give my ERROR:

ERROR: Update access is not supported for file INXLS.PD_AND_AI.DATA.

data a;

set inxls.PDandAI ;

run;

 

could you please let me know how I modfy the program to get this resolved?

 

Many thanks for your help!

1 REPLY 1
Kurt_Bremser
Super User

I would try an encoding option in the libname, but I have no idea if that would work.

If you work in a UTF environment, it would be best to run SAS with UTF encoding. That must be set at startup (commandline or config option).

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1 reply
  • 913 views
  • 0 likes
  • 2 in conversation