mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #371] We found a problem with some content #297
Labels
No labels
awaiting user feedback
bug
cmake
cmake
docs
feature request
in progress
long term
medium term
medium term
pull-request
question
question
ready to close
short term
under investigation
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/libxlsxwriter#297
Loading…
Add table
Add a link
Reference in a new issue
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?
Originally created by @willm132 on GitHub (May 3, 2022).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/371
Using Swift and Xcode
Once you open the document you get this error
@jmcnamara commented on GitHub (May 3, 2022):
Like you add a complete sample application that demonstrates the issue.
@willm132 commented on GitHub (May 3, 2022):
@jmcnamara commented on GitHub (May 3, 2022):
Thanks. Could you also attach the output xlsx file.
@willm132 commented on GitHub (May 3, 2022):
Also, worksheet_repeat_rows(worksheet1, 5, 5) does nothing when you open with excel and try to print
@jmcnamara commented on GitHub (May 3, 2022):
Sorry, I meant could you attach the xlsx file from the smaller sample program above.
@jmcnamara commented on GitHub (May 4, 2022):
The reason for this Excel error is that there are overlapping merged ranges. Specifically "A97:C97" and "A97:I97".
Libxlsxwriter should warn/prevent overlapping ranges (and it is a planned feature https://github.com/jmcnamara/XlsxWriter/issues/848) but for now try to avoid overlapping merged ranges.
@willm132 commented on GitHub (May 4, 2022):
And why does the worksheet_repeat_rows(worksheet1, 5, 5) do nothing when opening in excel?
@jmcnamara commented on GitHub (May 4, 2022):
It should work. Here is a C example:
Output:
However, if you are using xlsxwriter.swift then it may not be supported/ported. I don't see it mentioned in the code.