mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #344] worksheet_merge_range to display numerical data #277
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#277
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 @sapomuyverde on GitHub (Jul 12, 2021).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/344
Originally assigned to: @jmcnamara on GitHub.
There is some restriction in which I cannot use worksheet_merge_range to combine columns and put numeric data?, I mean,
I have tried to put a numeric data: something like this:
worksheet_merge_range(worksheet, 6, 11, 6, 14, totalCtes, numberWithoutDecimalCenter)
and it didn't work, so I had to convert the variable to string and it worked, is it expected behavior?.
Regards,
Javier
@jmcnamara commented on GitHub (Jul 12, 2021):
Yes.
From the docs for worksheet_merge_range:
@sapomuyverde commented on GitHub (Jul 12, 2021):
I didn't check the docs, thanks for clarifying.