I am trying to write an XLSX file using the openpyxl module. I am using the append() method to insert the values row by row. But I want to insert the values cell by cell instead. I would also like to format the cell (font, colour, alignment etc). Please help me.
feedback
|
|
Read https://bitbucket.org/ericgazoni/openpyxl/issue/43/behaviour-excelwriter-changed-from-123-137. It should have all you need to know | |||
|
feedback
|
|
You can set all that cell by cell (if that is what you need) using openpyxl. Here is a small example which sets the value, name (named_range) and some style of cells in a workbook:
Look up the Style class in the openpyxl documentation to learn more about how to set individual formattings. | |||
|
feedback
|