We found a problem with some content in the "fileName". #1537
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#1537
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?
I am using this function to extract column names from JSON data and write it to an excel file. I am getting "We found a problem with some content in the "fileName". Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes". I checked all possible solutions but nothing is working.
Can you share the generated file?
Hi I am having the same issuee as well. The xlsx file seems to be ok upon opening it but I'd like to prevent the alert from happening. I am trying to execute this on the client side so that usere can download the data.
Thanks for your patience and feedback @scottyh527 ! He was kind enough to share a repro.
Excel has a limit of 32767 characters in a cell.
@akspan12 can you check if any cell you are writing is actually too long?
@scottyh527 we'll accept a PR that errors if a string length exceeds 32768 characters. The check should appear before the
opts.bookSST
check in https://github.com/SheetJS/js-xlsx/blob/master/bits/67_wsxml.js#L260