BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
anandsasbi
Obsidian | Level 7

I have multiple excel file as source. Some source file having data in Semi Chinese & traditional Chinese language.

I am using below proc import code for import excel file (.xls) . For English version file it working fine but same code not working for Semi Chinese & traditional Chinese , Output coming in unreadable format. I have also selected server U8 ( In my case it is GridSASApp_U8).

%let Sheetname = “Testdata”;

Proc Import out = work.Test1

DATAFILE = “/GridPath/Source/External_trad_chinese_sample.xls”

DBMS=XLS REPLACE;

SHEET=&Sheetname.;

Run;

 

I am using SAS EG 6.1 (32-bit)

I am able to read this Chinese version file through wizard ( File  -> Import data) using server GridSASApp_U8 but I can’t use code which Auto generated by “Import data” because  Auto generated code using Dataline in  Infile statement under data step .

I have to change file location & file name based on condition.

 

Could you please suggest me that what change require in proc Import code in order to import multi language file under GridSASApp_U8 server.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Try DBMS=XLSX or DBMS=EXCEL.

XLS would not work on Chinese,Japanese,Korean.... these double byte  character .

View solution in original post

2 REPLIES 2
Ksharp
Super User

Try DBMS=XLSX or DBMS=EXCEL.

XLS would not work on Chinese,Japanese,Korean.... these double byte  character .

anandsasbi
Obsidian | Level 7

Thanks for your reply, Now it's working after change Excel file xls to xlsx .

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3960 views
  • 0 likes
  • 2 in conversation