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
Another workaround is to use conditional_format, and use type='no_errors':
conditional_format
type='no_errors'
worksheet.conditional_format(your_range, {'type': 'no_errors', 'format': your_format})