We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using pandas and openpyxl to generate a excell sheet. Everything works except:
validation = DataValidation( type="list", formula1='"Keep,Delete,Production"', allow_blank=True, showDropDown=True )
Validation to the cells is added, but the dropdown is not shown and it has to be added manually.
The text was updated successfully, but these errors were encountered:
This caught me out a while ago, you have to set showDropDown=False to get the dropdown to show
showDropDown=False
Sorry, something went wrong.
This is amazing, it actually works xD
No branches or pull requests
I am using pandas and openpyxl to generate a excell sheet. Everything works except:
Validation to the cells is added, but the dropdown is not shown and it has to be added manually.
The text was updated successfully, but these errors were encountered: