How to write/update data into cells of existing XLSX workbook using xlsxwriter in python

Quote from xlsxwriter module documentation:

This module cannot be used to modify or write to an existing Excel
XLSX file.

If you want to modify existing xlsx workbook, consider using openpyxl module.

See also:

Leave a Comment