I work on python using XlsxWriter and I\'ve been trying to solve this problem with no success:
My app must create an Xlsx file in which data is shown in a table-like
you could set the default format of the workbook:
import xlsxwriter workbook = xlsxwriter.Workbook('example.xlsx') # default cell format to size 10 workbook.formats[0].set_font_size(10) # default cell format to center workbook.formats[0].set_align('center') ...