Open ana-stankovic opened 1 year ago
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.
This caught me out a while ago, you have to set showDropDown=False to get the dropdown to show
showDropDown=False
This is amazing, it actually works xD
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.