Is it possible?
I know ws.set_row('B:B', options={'hidden': True})
But, is there something like ws.set_row('B:B', options={'delete_row': True})
?
Is it possible?
I know ws.set_row('B:B', options={'hidden': True})
But, is there something like ws.set_row('B:B', options={'delete_row': True})
?
To quote the Worksheet
docs:
"""
The options parameter is a dictionary with the following possible keys:
'hidden'
'level'
'collapsed'
""""
Other values like delete_row
are not acceptable.
You cannot delete a column with XlsxWriter. The best option is to structure your application so it doesn't write data to the column in the first place.