BIFF5 Encoding #2113
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#2113
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hello
I have the same issue for the encoding.
XLS BIFF8(office 97-2004 document) and contains japanese characters.
So i have used codepage:932 for japanese and it's working well for csv files.
Unfortunately, it's not working for office 97 xls file.
Manually, i open office 97 xls file and save as xlsx or csv file and one alert prompted as like that:
"Some features in your workbook must be lost if you save it as Microsoft Excel 5.0/95 Workbook.
Do you want to keep using that format?"
After i click "Yes" and save, then it's working without any problem.(of course we use codepage: 932)
Could you please give me instruction how can i solve that issue?
Thanks.
Originally posted by @WangHwaKok in https://github.com/SheetJS/sheetjs/issues/739#issuecomment-695789350
@WangHwaKok we can continue the discussion here.
The offending file has a CodePage record with value 1252, which suggests it should be using Windows-1252.
There are two settings in Windows for controlling region features (using Windows 7 nomenclature):
"Formats": This controls how date/time formats and other fields are interpreted
"Language for non-Unicode programs": This governs the system locale (verified with CHCP)
Error: One or more worksheets in this workbook have names that contain square brackets [], but when you allow Excel to repair the result looks like CP932
Hello @SheetJSDev
Yes, very strange file and but it's a downloaded file.
I tried to convert it to xlsx or csv using free online converting services, finally it works.
I recognize that it is not the converting issue and converting fails using this library because of encoding issue.
However, still i am looking for the solution...