mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #31] Feature request: worksheet_data_validation() #26
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#26
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 @jmcnamara on GitHub (Dec 10, 2015).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/31
Originally assigned to: @jmcnamara on GitHub.
Add
worksheet_data_validation()function like the Python XlsxWriter Worksheet methoddata_validation().See https://xlsxwriter.readthedocs.io/working_with_data_validation.html
Add +1 as a comment to vote for this feature and to get an update when it is implemented.
@evanmiller commented on GitHub (Apr 26, 2017):
I'd like to put in a plug for this feature -- its absence is one of the few things keeping my code base dependent on xlsLib. Just so other users are aware, Excel's data validation is how drop-down menus are implemented for choosing among a discrete set of values.
Also @jmcnamara the correct link is: https://xlsxwriter.readthedocs.io/working_with_data_validation.html
@jmcnamara commented on GitHub (Apr 26, 2017):
@evanmiller Noted.
@jmcnamara commented on GitHub (Sep 20, 2017):
@evanmiller I've started work on data validation in libxlsxwriter. It isn't fully useable yet but you could try it out in a few days, when it is more functional. If you are interested.
If so let me know what type of data validation you want to do.
@evanmiller commented on GitHub (Sep 20, 2017):
@jmcnamara Thanks. I'm interested in pop-up buttons -- in xlsLib I do something like
@jmcnamara commented on GitHub (Sep 20, 2017):
This type of validation?
@evanmiller commented on GitHub (Sep 20, 2017):
@jmcnamara Yes.
@jmcnamara commented on GitHub (Sep 20, 2017):
@evanmiller That is currently doable with the code on the
data_validationbranch. The above was created using this program:Most of the guard rails are still missing but if you can figure it out based on the above program, you can try it out.
@evanmiller commented on GitHub (Sep 21, 2017):
@jmcnamara Thanks. I'll trust you that it works as advertised, and I'll keep it in mind when deciding to port the rest of my code.
@jmcnamara commented on GitHub (Sep 25, 2017):
Added in version 0.75. See Working with Data Validation and data_validate.c.