Files not edited when reading Excel files #2447

Closed
opened 2021-11-08 02:45:06 +00:00 by Breave-YY · 5 comments
Breave-YY commented 2021-11-08 02:45:06 +00:00 (Migrated from github.com)

When reading the excel file, the file that has not been edited will be reported as vm5053:14 uncaught unrecognized tag: null|workbook, false|worksheet, false|table, false

When reading the excel file, the file that has not been edited will be reported as vm5053:14 uncaught unrecognized tag: null|workbook, false|worksheet, false|table, false
reviewher commented 2021-11-08 02:46:40 +00:00 (Migrated from github.com)

Please share a sample file

Please share a sample file
Breave-YY commented 2021-11-08 03:13:34 +00:00 (Migrated from github.com)

If this file has not been edited, it will report an error. After editing, it will not report an error

If this file has not been edited, it will report an error. After editing, it will not report an error
SheetJSDev commented 2021-11-08 03:32:14 +00:00 (Migrated from github.com)

There's a literal <ss:Null/> which does not appear in the XML2003 reference schemas. Since Excel accepts the file, we'll accept a patch. Add the following line to bits/75_xlml.js line 474:

		case 'null' /*case 'Null'*/: break;
There's a literal `<ss:Null/>` which does not appear in the XML2003 reference schemas. Since Excel accepts the file, we'll accept a patch. Add the following line to [`bits/75_xlml.js` line 474](https://github.com/SheetJS/sheetjs/blob/master/bits/75_xlml.js#L474): ```js case 'null' /*case 'Null'*/: break; ```
Breave-YY commented 2021-11-08 03:45:06 +00:00 (Migrated from github.com)

npm install xlsx How do I modify these files

npm install xlsx How do I modify these files
ghost commented 2021-11-08 04:26:25 +00:00 (Migrated from github.com)

Do not fuck with that file. Period.

Do not fuck with that file. Period.
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sheetjs/sheetjs#2447
No description provided.