Search code examples
pythonxlsxxlsxwriter

How to create XLSX table without any style?


Per XLSX documentation, the default Table style output from Xlsxwriter is TableStyleMedium9. I don't want to style the table at all, how to do that? I tried passing {'style:' None} and {'style:' False} to add_table() but those threw exceptions.

Reference: Worksheet.py


Solution

  • In Excel itself, the default style is called "Normal" (within VBA as well). Try passing that!