openpyxl icon indicating copy to clipboard operation
openpyxl copied to clipboard

Results 53 openpyxl issues
Sort by recently updated
recently updated
newest added

There is only 2 line of code ``` workbook = load_workbook(filename='input.xlsx', keep_vba=True, rich_text=True) # I will do operator here, but there is an error, so I comment this line workbook.save('output.xlsx')...

**Description:** When using the Openpyxl library to open and save an Excel file containing charts (please note **multiple tabs** in the file to simplify case-by-case navigation), the charts become corrupted...

### given [openpyxl.worksheet.worksheet.append(iterable)](https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.worksheet.html#openpyxl.worksheet.worksheet.Worksheet.append) returns None ### proposal [openpyxl.worksheet.worksheet.append(iterable)](https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.worksheet.html#openpyxl.worksheet.worksheet.Worksheet.append) returns a list or dict. If iterable was a list, return the list of cells appended matching the order of items. If...